﻿@import url("../../../../../css2.css");
.purple {
  color: #D31772;
}

.blue {
  color: #51C2EB;
}

.green {
  color: #00964D;
}

.orange {
  color: #EF7724;
}

.white {
  color: white;
}

@-webkit-keyframes rotate {
  0% {
    transform: rotate(0) scale(0.8);
  }
  50% {
    transform: rotate(180deg) scale(1);
  }
  100% {
    transform: rotate(0deg) scale(0.8);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0) scale(0.8);
  }
  50% {
    transform: rotate(180deg) scale(1);
  }
  100% {
    transform: rotate(0deg) scale(0.8);
  }
}
@-webkit-keyframes rotate-anticlock {
  0% {
    transform: rotate(0) scale(0.8);
  }
  50% {
    transform: rotate(-180deg) scale(1);
  }
  100% {
    transform: rotate(0deg) scale(0.8);
  }
}
@keyframes rotate-anticlock {
  0% {
    transform: rotate(0) scale(0.8);
  }
  50% {
    transform: rotate(-180deg) scale(1);
  }
  100% {
    transform: rotate(0deg) scale(0.8);
  }
}
@-webkit-keyframes swing {
  0% {
    transform: rotate(-10deg) translate(50px, 0);
  }
  50% {
    transform: rotate(10deg) translate(150px, 0);
  }
  100% {
    transform: rotate(-10deg) translate(50px, 0);
  }
}
@keyframes swing {
  0% {
    transform: rotate(-10deg) translate(50px, 0);
  }
  50% {
    transform: rotate(10deg) translate(150px, 0);
  }
  100% {
    transform: rotate(-10deg) translate(50px, 0);
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
@keyframes fade {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
@-webkit-keyframes simple-move {
  100% {
    transform: translate(15px, 0);
  }
}
@keyframes simple-move {
  100% {
    transform: translate(15px, 0);
  }
}
body {
  font-family: "Urbanist", sans-serif;
  margin: 0;
  padding: 0;
}

ul {
  padding-left: 0;
}
ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

button:focus, .form-control:focus, .btn-primary:focus {
  outline: 0;
  box-shadow: none;
}

p {
  font-family: "Urbanist", sans-serif;
  font-size: 22px;
  color: #000000;
  font-weight: 500;
  line-height: 36px;
}
@media (max-width: 1600px) {
  p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 767.98px) {
  p {
    font-size: 14px;
    line-height: 25px;
  }
}

.section-title {
  font-size: 60px;
  font-family: "Balsamiq Sans", cursive;
  font-weight: 700;
  line-height: 72px;
  margin-bottom: 50px;
}
@media (max-width: 1600px) {
  .section-title {
    font-size: 50px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1399.98px) {
  .section-title {
    font-size: 47px;
    line-height: 48px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .section-title {
    font-size: 40px;
    line-height: 45px;
  }
}

h1 {
  font-size: 80px;
  font-weight: 400;
  font-family: "Balsamiq Sans", cursive;
}
@media (max-width: 1600px) {
  h1 {
    font-size: 60px;
  }
}
@media (max-width: 1399.98px) {
  h1 {
    font-size: 40px;
  }
}
@media (max-width: 767.98px) {
  h1 {
    font-size: 40px;
    line-height: 45px;
  }
}

h2 {
  font-size: 46px;
  font-weight: 700;
  font-family: "Balsamiq Sans", cursive;
}
@media (max-width: 1600px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 767.98px) {
  h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

h3 {
  font-size: 46px;
  font-weight: 700;
  font-family: "Balsamiq Sans", cursive;
}
@media (max-width: 1600px) {
  h3 {
    font-size: 40px;
  }
}
@media (max-width: 1399.98px) {
  h3 {
    font-size: 35px;
  }
}

h4 {
  font-size: 36px;
  font-weight: 700;
  font-family: "Balsamiq Sans", cursive;
}
@media (max-width: 1600px) {
  h4 {
    font-size: 30px;
  }
}
@media (max-width: 1399.98px) {
  h4 {
    font-size: 25px;
  }
}

h5 {
  font-size: 30px;
  font-weight: 700;
  font-family: "Balsamiq Sans", cursive;
}
@media (max-width: 1600px) {
  h5 {
    font-size: 25px;
  }
}
@media (max-width: 1399.98px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Balsamiq Sans", cursive;
}
@media (max-width: 1600px) {
  h6 {
    font-size: 20px;
  }
}
@media (max-width: 1399.98px) {
  h6 {
    font-size: 18px;
  }
}

img {
  max-width: 100%;
  display: block;
}

.round-elem {
  -webkit-animation: rotate 5s infinite;
  animation: rotate 5s infinite;
}

.bus-swing {
  -webkit-animation: swing 5s infinite;
  animation: swing 5s infinite;
}

.anim-move {
  -webkit-animation: simple-move 1s infinite alternate;
  animation: simple-move 1s infinite alternate;
}

@media (min-width: 1300px) {
  .container {
    max-width: 1110px;
  }
}
@media (min-width: 1800px) {
  .container {
    max-width: 1170px;
  }
}

.overlay-sec {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.container {
  max-width: 1780px;
}

.yellow-btn {
  background-color: #FFCE07;
  color: #4A4F55;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 15px 32px;
  font-size: 18px;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
  box-shadow: 4px 7px 35px rgba(255, 206, 7, 0.43);
  transition: all 0.3s ease-in;
  letter-spacing: 1px;
}
.yellow-btn:hover {
  background-color: #00964D;
  color: white;
  box-shadow: none;
  transition: all 0.3s ease-in;
}
@media (max-width: 767.98px) {
  .yellow-btn {
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .yellow-btn {
    padding: 20px 55px;
    width: 100%;
    display: block;
    text-align: center;
  }
}

header {
  padding: 24px 60px;
  position: relative;
  z-index: 10;
  transition: 0.5s ease;
}
@media (max-width: 767.98px) {
  header {
    padding: 24px 0px;
  }
}
@media (max-width: 1100px) {
  header {
    padding: 24px 0px;
  }
}
header .header-left {
  padding-top: 24px;
}
@media (max-width: 1100px) {
  header .header-left {
    padding-top: 0;
  }
}
header .logo {
  /*  max-width: 223px;*/
  display: inline-block;
}
@media (max-width: 1600px) {
  header .logo {
    /* max-width: 140px;*/
  }
}
@media (max-width: 767.98px) {
  header .logo {
    /*max-width: 170px;*/
  }
}
header .logo img {
  width: 100%;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  header .logo img {
    width: 80%;
  }
}
header .header-right {
  text-align: right;
  padding-top: 0;
}
@media (max-width: 1310px) {
  header .header-right {
    display: none;
  }
}
header .header-right ul.left-ul {
  margin: 0px;
  padding: 0px;
  display: inline-block;
  vertical-align: top;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  header .header-right ul.left-ul {
    width: 58%;
  }
}
header .header-right ul.left-ul li {
  display: block;
  color: #fff;
  font-family: "Poppins";
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 13px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  header .header-right ul.left-ul li {
    font-size: 14px;
  }
}
header .header-right ul.left-ul li span {
  margin: 0px 10px 0px 0px;
  padding: 0px;
  font-family: "Poppins";
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  letter-spacing: 4px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  header .header-right ul.left-ul li span {
    font-size: 13px;
    letter-spacing: 2px;
  }
}
header .header-right ul.left-ul li a {
  margin: 0px;
  padding: 0px;
  font-family: "Poppins";
  font-size: 18px;
  text-transform: uppercase;
  color: #B79662;
  font-weight: 600;
  letter-spacing: 4px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  header .header-right ul.left-ul li a {
    font-size: 13px;
    letter-spacing: 2px;
  }
}
header .header-right ul.left-ul li .resource-link {
  margin: 0px;
  padding: 0px;
  font-size: 18px;
  color: #fff;
  text-transform: capitalize;
  opacity: 0.6;
  letter-spacing: 0;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  header .header-right ul.left-ul li .resource-link {
    font-size: 14px;
  }
}
header .header-right ul.left-ul li .resource-link i {
  display: inline-block;
}
header .header-right ul.left-ul .seperator {
  margin: 0px 15px;
  color: #fff;
  font-size: 19px;
  font-weight: 300;
  opacity: 9%;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  header .header-right ul.left-ul .seperator {
    font-size: 14px;
  }
}
header ul.right-ul {
  display: inline-block;
  margin: 0px 0px 0px 0px;
  padding: 0px;
  vertical-align: middle;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  header ul.right-ul {
    width: 35%;
  }
}
header ul.right-ul li {
  display: inline-block;
  margin: 0px 0px 0px 30px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  header ul.right-ul li {
    margin: 0px 0px 0px 15px;
    width: 37%;
  }
}
header ul.right-ul li a img {
  transition: 0.5s ease;
}
header ul.right-ul li a:hover img {
  transform: rotate(-90deg);
  transition: 0.5s ease;
}

button.sub-menu-toggle {
  display: none;
}

.sub-menu {
  background: #B79662;
  padding: 15px;
  /*border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;*/
  border-radius: 15px;
  position: absolute;
  display: none;
  width: 330px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .sub-menu {
    width: 250px;
    padding: 8px;
  }
}
@media (max-width: 1310px) {
  .sub-menu {
    position: inherit;
    background: #222225 !important;
    padding: 0px 0px 0px 25px !important;
  }
}
.sub-menu li {
  display: block !important;
  padding: 0px 0px !important;
  margin: 0 !important;
  margin-bottom: 10px !important;
  font-size: 18px !important;
  font-weight: 300;
  border-bottom: 1px solid #fff;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .sub-menu li {
    font-size: 14px !important;
    margin-bottom: 5px !important;
  }
}
@media (max-width: 1310px) {
  .sub-menu li {
    margin-bottom: 0px !important;
  }
}
.sub-menu li a {
  padding: 10px !important;
  display: block !important;
}
.sub-menu li a:hover {
  background: #9B7943;
  /* border-bottom-left-radius: 15px;
   border-bottom-right-radius: 15px;
   border-top-right-radius: 15px;*/
  border-radius: 15px !important;
  color: #fff !important;
}
.sub-menu li:last-child {
  border-bottom: 0px;
}
.sub-menu::before {
  margin: 0px;
  padding: 0px;
  content: "";
  width: 15px;
  height: 16px;
  background: url(../images/menu-arrow.png) no-repeat;
  position: absolute;
  top: -16px;
  left: 10%;
  display: block;
}
@media (max-width: 1310px) {
  .sub-menu::before {
    display: none;
  }
}

.menu-item:hover .sub-menu {
  display: block !important;
}

header .sticky-li {
  display: none !important;
}

header.sticky {
  position: fixed;
  width: 100%;
  background: #000 !important;
  padding: 24px 60px 0px;
  z-index: 10000;
  transition: 0.5s ease;
}
@media (max-width: 1310px) {
  header.sticky {
    padding: 10px 0px;
  }
}
header.sticky ul.right-ul {
  display: inline-block;
}
header.sticky .sticky-li {
  display: none !important;
  margin: 0px 15px 0px 0px !important;
}
header.sticky .sticky-li img {
  width: auto;
}
header.sticky .display {
  display: inline-block !important;
  margin: 0px 15px 0px 0px !important;
  vertical-align: top;
}

#mg-wprm-wrap ul#wprmenu_menu_ul li.menu-item a {
  font-family: "Poppins" !important;
}

#mg-wprm-wrap li.menu-item a {
  padding: 10px 30px !important;
}

input:-internal-autofill-selected {
  -webkit-appearance: menulist-button;
     -moz-appearance: menulist-button;
          appearance: menulist-button;
  background-image: none !important;
  background-color: transparent !important;
  color: fieldtext !important;
}

.whatsapp-img-class {
  margin: 0px;
  padding: 0px 0px;
  background: url(../images/wtsapp-default.png) no-repeat;
  width: 72px;
  height: 72px;
  display: inline-block;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .whatsapp-img-class {
    width: 50px;
    height: 50px;
    background-size: 100%;
  }
}
.whatsapp-img-class:hover {
  background: url(../images/wtsapp-hover.png) no-repeat;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .whatsapp-img-class:hover {
    width: 50px;
    height: 50px;
    background-size: 100%;
  }
}

.header-phone-class {
  margin: 0px;
  padding: 0px 0px;
  background: url(../images/call-default.png) no-repeat;
  width: 72px;
  height: 72px;
  display: inline-block;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .header-phone-class {
    width: 50px;
    height: 50px;
    background-size: 100%;
  }
}
.header-phone-class:hover {
  background: url(../images/call-hover.png) no-repeat;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .header-phone-class:hover {
    width: 50px;
    height: 50px;
    background-size: 100%;
  }
}

.tawk-max-container {
  border-radius: 20px 20px 0 0 !important;
}

.footer-wrapper {
  margin: 0px;
  padding: 150px 0px 50px;
  background: url("../images/footer_image_lap_2.jpg") no-repeat bottom center #0A0A0B;
  background-size: 100%;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .footer-wrapper {
    padding: 50px 0px 50px;
  }
}
@media (max-width: 1025px) {
  .footer-wrapper {
    padding: 50px 0px 50px;
  }
}
@media (max-width: 767.98px) {
  .footer-wrapper {
    padding: 95px 30px 50px;
    background: url(../images/footer_image_lap_2.jpg) no-repeat -126px bottom #0A0A0B;
  }
}
.footer-wrapper .footer-logo {
  margin-top: 40%;
}
@media (max-width: 767.98px) {
  .footer-wrapper .footer-logo {
    margin-top: 0;
    /* width: 55%;*/
  }
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .footer-wrapper .footer-logo {
    width: 70%;
  }
}
.footer-wrapper .phone-email span {
  font-family: "Poppins";
  margin-top: 22px;
  font-weight: 400;
  color: white;
  font-size: 22px;
  display: block;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .footer-wrapper .phone-email span {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 1025px) {
  .footer-wrapper .phone-email span {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .footer-wrapper .phone-email span {
    font-size: 14px;
  }
}
.footer-wrapper .phone-email a {
  margin: 0px;
  padding: 0px;
  font-size: 32px;
  line-height: 51px;
  color: #B79662;
  font-weight: 300;
  font-family: "Poppins";
  position: relative;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .footer-wrapper .phone-email a {
    font-size: 22px;
    line-height: 33px;
  }
}
@media (max-width: 1025px) {
  .footer-wrapper .phone-email a {
    font-size: 15px;
    line-height: 50px;
  }
}
@media (max-width: 767.98px) {
  .footer-wrapper .phone-email a {
    font-size: 15px;
    line-height: 22px;
  }
}
.footer-wrapper .phone-email a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background: #473c2d;
  left: 0;
  bottom: -5px;
}
.footer-wrapper .address-section {
  margin: 0px 0px;
  padding: 0px 0px;
}
.footer-wrapper .address-section li {
  margin: 0px 0px 40px 0px;
  padding: 0px 0px;
  list-style: none;
  font-family: "Poppins";
  color: #fff;
  font-size: 18px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .footer-wrapper .address-section li {
    font-size: 12px;
    line-height: 18px;
    margin: 0px 0px 20px 0px;
  }
}
@media (max-width: 1025px) {
  .footer-wrapper .address-section li {
    font-size: 11px;
  }
}
@media (max-width: 767.98px) {
  .footer-wrapper .address-section li {
    font-size: 12px;
    line-height: 21px;
  }
}
.footer-wrapper .address-section li i {
  display: inline-block;
  margin-right: 35px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .footer-wrapper .address-section li i {
    vertical-align: middle;
  }
}
@media (max-width: 767.98px) {
  .footer-wrapper .address-section li i {
    margin-right: 25px;
  }
}
@media (max-width: 1025px) {
  .footer-wrapper .address-section li i {
    margin-right: 15px;
  }
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .footer-wrapper .address-section li i img {
    width: 80% !important;
  }
}
.footer-wrapper .address-section li span {
  display: inline-block;
  margin: 0;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .footer-wrapper .address-section li span {
    vertical-align: middle;
  }
}
.footer-wrapper .footer-menu-section {
  margin: 0px;
  /*padding: 0px 0px;*/
}
.footer-wrapper .footer-menu-section h3, .footer-wrapper-footer-menu-section-h3 {
  margin: 0px 0px 20px 0px;
  padding: 0px;
  color: #fff;
  font-size: 22px;
  font-family: "Poppins";
  font-weight: 500;
	display: block;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .footer-wrapper .footer-menu-section h3, .footer-wrapper-footer-menu-section-h3 {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 767.98px) {
  .footer-wrapper .footer-menu-section h3, .footer-wrapper-footer-menu-section-h3 {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
  }
}
@media (max-width: 1025px) {
  .footer-wrapper .footer-menu-section h3, .footer-wrapper-footer-menu-section-h3 {
    font-size: 17px;
  }
}
.footer-wrapper .footer-menu-section li {
  margin: 0px 0px 20px 0px;
  padding: 0px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .footer-wrapper .footer-menu-section li {
    margin: 0px 0px 8px 0px;
  }
}
.footer-wrapper .footer-menu-section li a {
  margin: 0px;
  padding: 0px 0px;
  font-family: "Poppins";
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  position: inherit;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .footer-wrapper .footer-menu-section li a {
    font-size: 12px;
    line-height: 14px;
  }
}
@media (max-width: 1025px) {
  .footer-wrapper .footer-menu-section li a {
    font-size: 15px;
  }
}
@media (max-width: 767.98px) {
  .footer-wrapper .footer-menu-section li a {
    font-size: 12px;
  }
}
.footer-wrapper .footer-menu-section li a:hover {
  color: #B79662;
}
.footer-wrapper .second-row {
  margin-top: 70px;
  padding-bottom: 400px;
}
@media (max-width: 1025px) {
  .footer-wrapper .second-row {
    padding-bottom: 260px;
  }
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .footer-wrapper .second-row {
    padding-bottom: 200px;
  }
}
@media (max-width: 767.98px) {
  .footer-wrapper .second-row {
    padding-bottom: 160px;
  }
}
.footer-wrapper .bottom-footer {
  margin: 0px;
  padding: 0px 0px 20px 0px;
}
@media (max-width: 767.98px) {
  .footer-wrapper .bottom-footer .col-md-4.order3 {
    order: 1;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .footer-wrapper .bottom-footer .col-md-4.order3 .social-icons {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .footer-wrapper .bottom-footer .col-md-4.order2 {
    order: 2;
    text-align: center;
  }
}
@media (max-width: 991.98px) {
  .footer-wrapper .bottom-footer .col-md-4.order1 {
    order: 3;
    text-align: center;
    width: 100%;
  }
}
.footer-wrapper .bottom-footer p {
  font-family: "Poppins";
  margin: 0px;
  padding: 0px;
  font-size: 20px;
  color: #B7B7B7;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .footer-wrapper .bottom-footer p {
    font-size: 14px;
  }
}
@media (max-width: 991.98px) {
  .footer-wrapper .bottom-footer p {
    font-size: 13px;
  }
}
.footer-wrapper .bottom-footer a {
  font-family: "Poppins";
  margin: 0px;
  padding: 0px;
  font-size: 20px;
  color: #B7B7B7;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .footer-wrapper .bottom-footer a {
    font-size: 14px;
  }
}
@media (max-width: 991.98px) {
  .footer-wrapper .bottom-footer a {
    font-size: 13px;
  }
}
.footer-wrapper .bottom-footer a:hover {
  color: #B79662;
}
.footer-wrapper .bottom-footer span {
  font-family: "Poppins";
  margin: 0px 10px;
  padding: 0px;
  font-size: 14px;
  color: #B7B7B7;
}
.footer-wrapper .bottom-footer .footer-link {
  text-align: center;
}
.footer-wrapper .bottom-footer .social-icons {
  margin: 0px 0px;
  padding: 0px 0px;
  text-align: right;
}
@media (max-width: 767.98px) {
  .footer-wrapper .bottom-footer .social-icons {
    margin-bottom: 20px;
  }
}
.footer-wrapper .bottom-footer .social-icons a {
  border-bottom: 2px solid #B79662;
  margin: 0px 10px;
}
@media (max-width: 767.98px) {
  .footer-wrapper #f-menu-section {
    display: none;
  }
}
.footer-wrapper #f-menu-section.active {
  display: block;
}
@media (max-width: 767.98px) {
  .footer-wrapper #f-contact-section {
    display: none;
  }
}
.footer-wrapper #f-contact-section.active {
  display: block;
}
@media (max-width: 767.98px) {
  .footer-wrapper .f-menu-h3:after {
    background: url(../images/down-arrow-gray.svg) no-repeat center center;
    content: "";
    width: 14px;
    height: 22px;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.footer-wrapper .active.f-menu-h3:after {
  transform: rotate(180deg);
  top: 2px;
}
@media (max-width: 767.98px) {
  .footer-wrapper .f-menu-h3 {
    padding: 0 0 10px 0;
    border-bottom: 1px solid #626263;
    position: relative;
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .col-md-3.footer-logo-div {
    width: 200px;
  }
}

.second-number {
  margin: 0px 0px 0px -4px !important;
}

@media (max-width: 991.98px) {
  .col-md-4.col-md-4.order1, .col-md-4.col-md-4.order2, .col-md-4.col-md-4.order3 {
    width: 100%;
    text-align: center;
  }
}
@font-face {
  font-family: 'Trakya-Sans-300';
  src: url('../fonts/Trakya-Sans-300-Light.eot');
  src: url('../fonts/Trakya-Sans-300-Light.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Trakya-Sans-300-Light.woff2') format('woff2'),
      url('../fonts/Trakya-Sans-300-Light.woff') format('woff'),
      url('../fonts/Trakya-Sans-300-Light.hxd') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kiona";
  src: url("../fonts/Kiona-Regular.eot");
  src: url("../fonts/Kiona-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Kiona-Regular.woff2") format("woff2"), url("../fonts/Kiona-Regular.woff") format("woff"), url("../fonts/Kiona-Regular.hxd") format("truetype"), url("../fonts/Kiona-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kiona";
  src: url("../fonts/Kiona-Itallic.eot");
  src: url("../fonts/Kiona-Itallic.eot?#iefix") format("embedded-opentype"), url("../fonts/Kiona-Itallic.woff2") format("woff2"), url("../fonts/Kiona-Itallic.woff") format("woff"), url("../fonts/Kiona-Itallic.hxd") format("truetype"), url("../fonts/Kiona-Itallic.svg") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Tenor Sans";
  src: url("../fonts/TenorSans.eot");
  src: url("../fonts/TenorSans.eot?#iefix") format("embedded-opentype"), url("../fonts/TenorSans.woff2") format("woff2"), url("../fonts/TenorSans.woff") format("woff"), url("../fonts/TenorSans.hxd") format("truetype"), url("../fonts/TenorSans.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-BoldItalic.eot");
  src: url("../fonts/Poppins-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-BoldItalic.woff2") format("woff2"), url("../fonts/Poppins-BoldItalic.woff") format("woff"), url("../fonts/Poppins-BoldItalic.hxd") format("truetype"), url("../fonts/Poppins-BoldItalic.svg") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraLight.eot");
  src: url("../fonts/Poppins-ExtraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-ExtraLight.woff2") format("woff2"), url("../fonts/Poppins-ExtraLight.woff") format("woff"), url("../fonts/Poppins-ExtraLight.hxd") format("truetype"), url("../fonts/Poppins-ExtraLight.svg") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraBold.eot");
  src: url("../fonts/Poppins-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-ExtraBold.woff2") format("woff2"), url("../fonts/Poppins-ExtraBold.woff") format("woff"), url("../fonts/Poppins-ExtraBold.hxd") format("truetype"), url("../fonts/Poppins-ExtraBold.svg") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Italic.eot");
  src: url("../fonts/Poppins-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Italic.woff2") format("woff2"), url("../fonts/Poppins-Italic.woff") format("woff"), url("../fonts/Poppins-Italic.hxd") format("truetype"), url("../fonts/Poppins-Italic.svg") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.eot");
  src: url("../fonts/Poppins-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Light.woff2") format("woff2"), url("../fonts/Poppins-Light.woff") format("woff"), url("../fonts/Poppins-Light.hxd") format("truetype"), url("../fonts/Poppins-Light.svg") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-LightItalic.eot");
  src: url("../fonts/Poppins-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-LightItalic.woff2") format("woff2"), url("../fonts/Poppins-LightItalic.woff") format("woff"), url("../fonts/Poppins-LightItalic.hxd") format("truetype"), url("../fonts/Poppins-LightItalic.svg") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/oppins-ExtraBoldItalic.eot");
  src: url("../fonts/Poppins-ExtraBoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-ExtraBoldItalic.woff2") format("woff2"), url("../fonts/Poppins-ExtraBoldItalic.woff") format("woff"), url("../fonts/Poppins-ExtraBoldItalic.hxd") format("truetype"), url("../fonts/Poppins-ExtraBoldItalic.svg") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.eot");
  src: url("../fonts/Poppins-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Medium.woff2") format("woff2"), url("../fonts/Poppins-Medium.woff") format("woff"), url("../fonts/Poppins-Medium.hxd") format("truetype"), url("../fonts/Poppins-Medium.svg") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-ExtraLightItalic.eot");
  src: url("fonts/Poppins-ExtraLightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Poppins-ExtraLightItalic.woff2") format("woff2"), url("fonts/Poppins-ExtraLightItalic.woff") format("woff"), url("fonts/Poppins-ExtraLightItalic.ttf") format("truetype"), url("fonts/Poppins-ExtraLightItalic.svg#Poppins-ExtraLightItalic") format("svg");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.eot");
  src: url("../fonts/Poppins-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.woff") format("woff"), url("../fonts/Poppins-Regular.hxd") format("truetype"), url("../fonts/Poppins-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.eot");
  src: url("../fonts/Poppins-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-SemiBold.woff2") format("woff2"), url("../fonts/Poppins-SemiBold.woff") format("woff"), url("../fonts/Poppins-SemiBold.hxd") format("truetype"), url("../fonts/Poppins-SemiBold.svg") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBoldItalic.eot");
  src: url("../fonts/Poppins-SemiBoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-SemiBoldItalic.woff2") format("woff2"), url("../fonts/Poppins-SemiBoldItalic.woff") format("woff"), url("../fonts/Poppins-SemiBoldItalic.hxd") format("truetype"), url("../fonts/Poppins-SemiBoldItalic.svg") format("svg");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Thin.eot");
  src: url("../fonts/Poppins-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Thin.woff2") format("woff2"), url("../fonts/Poppins-Thin.woff") format("woff"), url("../fonts/Poppins-Thin.hxd") format("truetype"), url("../fonts/Poppins-Thin.svg") format("svg");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Black.eot");
  src: url("../fonts/Poppins-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Black.woff2") format("woff2"), url("../fonts/Poppins-Black.woff") format("woff"), url("../fonts/Poppins-Black.hxd") format("truetype"), url("../fonts/Poppins-Black.svg") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.eot");
  src: url("../fonts/Poppins-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Bold.woff2") format("woff2"), url("../fonts/Poppins-Bold.woff") format("woff"), url("../fonts/Poppins-Bold.hxd") format("truetype"), url("../fonts/Poppins-Bold.svg") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-MediumItalic.eot");
  src: url("../fonts/Poppins-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-MediumItalic.woff2") format("woff2"), url("../fonts/Poppins-MediumItalic.woff") format("woff"), url("../fonts/Poppins-MediumItalic.hxd") format("truetype"), url("../fonts/Poppins-MediumItalic.svg") format("svg");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ThinItalic.eot");
  src: url("../fonts/Poppins-ThinItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-ThinItalic.woff2") format("woff2"), url("../fonts/Poppins-ThinItalic.woff") format("woff"), url("../fonts/Poppins-ThinItalic.hxd") format("truetype"), url("../fonts/Poppins-ThinItalic.svg") format("svg");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-BlackItalic.eot");
  src: url("../fonts/Poppins-BlackItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-BlackItalic.woff2") format("woff2"), url("../fonts/Poppins-BlackItalic.woff") format("woff"), url("../fonts/Poppins-BlackItalic.hxd") format("truetype"), url("../fonts/Poppins-BlackItalic.svg") format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .container {
    max-width: 1246px;
    width: 100%;
  }
}

a.connect-buuton {
  position: fixed;
  z-index: 10000;
  right: 0px;
  top: 20%;
}
@media (max-width: 991.98px) {
  a.connect-buuton img {
    width: 30px;
  }
}

.connect-icons-wrapper {
  margin: 0px;
  padding: 0px 8px;
  background-color: rgba(30, 30, 33, 0.8);
  border-radius: 25px;
  position: fixed;
  z-index: 100;
  right: 0px;
  top: 18.5%;
  border: 2px solid #B79662;
  left: auto;
}
.connect-icons-wrapper a {
  display: block;
  margin: 10px 0px;
  position: relative;
  right: -80%;
}
.connect-icons-wrapper a:hover {
  opacity: 0.6;
}

@media (max-width: 767.98px) {
  .home-banner {
    background: #1E1E21;
  }
}
.home-banner img {
  width: 100%;
}
.home-banner .desktop-banner {
  display: block;
}
@media (max-width: 767.98px) {
  .home-banner .desktop-banner {
    display: none;
  }
}
.home-banner .mobile-banner {
  display: none;
}
@media (max-width: 767.98px) {
  .home-banner .mobile-banner {
    display: block;
  }
}
.home-banner .main-menu {
  margin: 10px 0px 0px 65px;
  padding: 0px 0px;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .home-banner .main-menu {
    margin: 10px 0px 0px 0px;
  }
}
@media (max-width: 1310px) {
  .home-banner .main-menu {
    display: none;
  }
}
.home-banner .main-menu ul li {
  display: inline-block;
  font-size: 20px;
  font-family: "Poppins";
  margin: 0 20px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .home-banner .main-menu ul li {
    font-size: 15px;
    margin: 0 10px;
  }
}
.home-banner .main-menu ul li a {
  color: #fff;
  padding-bottom: 16px;
  display: inline-block;
}
.home-banner h1 {
  margin-top: 70px;
  font-size: 180px;
  font-family: "Kiona";
  text-transform: uppercase;
  color: white;
  line-height: 159px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .home-banner h1 {
    margin-top: 15%;
    font-size: 120px;
    line-height: 117px;
  }
}
@media (max-width: 1100px) {
  .home-banner h1 {
    margin-top: 80px;
    font-size: 100px;
    line-height: 106px;
  }
}
@media (max-width: 1025px) {
  .home-banner h1 {
    margin-top: 60px;
    font-size: 70px;
    line-height: 85px;
  }
}
@media (max-width: 991.98px) {
  .home-banner h1 {
    margin-top: 20px;
    font-size: 60px;
    line-height: 65px;
  }
}
@media (max-width: 767.98px) {
  .home-banner h1 {
    margin-top: 150px;
    font-size: 60px;
    line-height: 66px;
  }
}
.home-banner .counter-paragraph {
  margin: 420px 0 0 0;
  padding: 100px 0 0 0;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .home-banner .counter-paragraph {
    margin: 250px 0 0 0;
  }
}
@media (max-width: 1100px) {
  .home-banner .counter-paragraph {
    margin: 150px 0 0 0;
  }
}
@media (max-width: 1025px) {
  .home-banner .counter-paragraph {
    margin: 60px 0 0 0;
  }
}
@media (max-width: 991.98px) {
  .home-banner .counter-paragraph {
    margin: 35px 0 0 0;
    padding: 0px 0 0 0;
  }
}
@media (max-width: 767.98px) {
  .home-banner .counter-paragraph {
    margin: 70px 0 0 0;
  }
}
@media (max-width: 575.98px) {
  .home-banner .counter-paragraph {
    /* margin: 40% 0 0 0;*/
    margin: 20% 0 0 0;
  }
}
.home-banner .counter-paragraph p {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.5411764706);
  line-height: 38px;
  font-family: "Poppins";
  font-weight: 300;
  margin-bottom: 35px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .home-banner .counter-paragraph p {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 1025px) {
  .home-banner .counter-paragraph p {
    font-size: 16px;
    line-height: 30px;
  }
}
@media (max-width: 991.98px) {
  .home-banner .counter-paragraph p {
    font-size: 12px;
    line-height: 20px;
  }
}
@media (max-width: 767.98px) {
  .home-banner .counter-paragraph p {
    font-size: 16px;
    line-height: 28px;
  }
}
.home-banner .counter-paragraph .counter-wrapper {
  margin: 25px 0px 0px 150px;
  padding: 0px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .home-banner .counter-paragraph .counter-wrapper {
    margin: 35px 0px 0px 100px;
  }
}
@media (max-width: 1025px) {
  .home-banner .counter-paragraph .counter-wrapper {
    margin: 0px 0px 0px 70px;
  }
}
@media (max-width: 767.98px) {
  .home-banner .counter-paragraph .counter-wrapper {
    margin: 80px 0px 0px 0px;
    padding: 0px;
    text-align: center;
  }
}
.home-banner .counter-paragraph .counter-wrapper .count {
  margin: 0px;
  padding: 0px;
}
.home-banner .counter-paragraph .counter-wrapper .count .counter {
  font-family: "Tenor Sans";
  font-size: 75px;
  color: #B79662;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 400;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .home-banner .counter-paragraph .counter-wrapper .count .counter {
    font-size: 52px;
    line-height: 62px;
    margin-bottom: 15px;
  }
}
@media (max-width: 1100px) {
  .home-banner .counter-paragraph .counter-wrapper .count .counter {
    font-size: 40px;
  }
}
@media (max-width: 991.98px) {
  .home-banner .counter-paragraph .counter-wrapper .count .counter {
    font-size: 28px;
  }
}
@media (max-width: 767.98px) {
  .home-banner .counter-paragraph .counter-wrapper .count .counter {
    font-size: 46px;
    margin-bottom: 10px;
    margin-top: 0px;
  }
}
.home-banner .counter-paragraph .counter-wrapper i {
  font-family: "Tenor Sans";
  font-size: 84px;
  color: #B79662;
  font-style: normal;
  display: inline-block;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .home-banner .counter-paragraph .counter-wrapper i {
    font-size: 58px;
    line-height: 62px;
  }
}
@media (max-width: 1100px) {
  .home-banner .counter-paragraph .counter-wrapper i {
    font-size: 40px;
  }
}
.home-banner .counter-paragraph .counter-wrapper p {
  font-size: 24px;
  line-height: 28px;
  color: white;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .home-banner .counter-paragraph .counter-wrapper p {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 1100px) {
  .home-banner .counter-paragraph .counter-wrapper p {
    font-size: 15px;
    line-height: 22px;
  }
}
@media (max-width: 767.98px) {
  .home-banner .counter-paragraph .counter-wrapper p {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .home-banner .counter-paragraph .counter-wrapper p br {
    display: none;
  }
}
.home-banner .scroll-down {
  background: #424345;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  color: #fff;
  font-size: 12px;
  font-family: "Poppins";
  position: absolute;
  left: 70px;
  right: 0;
  margin: auto;
  bottom: 45%;
  padding: 40px 0px;
  text-align: center;
  transition: 0.5s ease;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .home-banner .scroll-down {
    left: 0;
    right: 0;
    margin: auto;
    bottom: 30%;
  }
}
@media (max-width: 991.98px) {
  .home-banner .scroll-down {
    display: none;
  }
}
.home-banner .scroll-down:hover {
  border: 1px solid #424345;
  background: transparent;
  transform: scale(1.3);
  transition: 0.5s ease;
}

.trusted-advise-wrapper {
  margin: 0px;
  background: url(../images/second-fold-bg.png) no-repeat #fff;
  text-align: center;
  margin-bottom: 200px;
}
@media (max-width: 767.98px) {
  .trusted-advise-wrapper {
    margin-bottom: 0;
  }
}
@media (max-width: 1025px) {
  .trusted-advise-wrapper {
    margin-bottom: 0px;
    background-size: 100%;
  }
}
@media (max-width: 767.98px) {
  .trusted-advise-wrapper {
    background-size: 100%;
    background-position: 0px 140px;
  }
}
.trusted-advise-wrapper .heading-section {
  padding: 250px 0;
  position: relative;
}
@media (max-width: 991.98px) {
  .trusted-advise-wrapper .heading-section {
    padding: 115px 0 280px;
    margin-bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .trusted-advise-wrapper .heading-section {
    padding: 130px 0 170px;
    margin-bottom: 0;
  }
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .trusted-advise-wrapper .heading-section {
    padding: 200px 0;
  }
}
.trusted-advise-wrapper .heading-section .h2-title-section {
  margin: 10px 0px;
  padding: 0px;
  font-family: "Tenor Sans";
  text-transform: uppercase;
  font-size: 52px;
  line-height: 70px;
	display: block;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .trusted-advise-wrapper .heading-section .h2-title-section {
    font-size: 38px;
    line-height: 54px;
  }
}
@media (max-width: 1100px) {
  .trusted-advise-wrapper .heading-section .h2-title-section {
    font-size: 30px;
    line-height: 45px;
  }
}
@media (max-width: 767.98px) {
  .trusted-advise-wrapper .heading-section .h2-title-section {
    font-size: 24px;
    line-height: 32px;
  }
  .trusted-advise-wrapper .heading-section .h2-title-section br {
    display: none;
  }
}
.trusted-advise-wrapper .heading-section .h2-title-section span {
  color: #C09C3F;
}
.trusted-advise-wrapper .heading-section .top-line {
  position: absolute;
  text-align: center;
  top: -70px;
  margin: auto;
  display: inline-block;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .trusted-advise-wrapper .heading-section .top-line {
    top: -120px;
  }
}
.trusted-advise-wrapper .heading-section .bottom-line {
  position: absolute;
  text-align: center;
  bottom: 70px;
  margin: auto;
  display: inline-block;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .trusted-advise-wrapper .heading-section .bottom-line {
    bottom: 0px;
  }
}

.swiper {
  width: 100%;
  height: 1000px;
}
@media (max-width: 1025px) {
  .swiper {
    height: 1200px;
  }
}

.swiper-slide {
  font-size: 18px;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  /*height: 100%;
  object-fit: cover;*/
}

.swiper-pagination-bullet {
  padding: 5px 10px;
  border-radius: 0;
  width: 500px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 12px;
  color: #000;
  opacity: 1;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
  width: 340px !important;
  border-radius: 0;
  padding: 10px 0px !important;
  text-align: right;
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins";
  color: #000;
  height: auto;
  background: none;
  margin-bottom: 70px !important;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .swiper-pagination-clickable .swiper-pagination-bullet {
    font-size: 14px;
    line-height: 25px;
  }
}
@media (max-width: 1025px) {
  .swiper-pagination-clickable .swiper-pagination-bullet {
    font-size: 14px;
    margin-bottom: 19px !important;
    width: 215px !important;
  }
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #B79662;
  border-bottom: 1px solid #B79662;
}

.vertical-tab-section {
  text-align: left;
  position: relative;
}
@media (max-width: 1100px) {
  .vertical-tab-section {
    display: none;
  }
}
.vertical-tab-section ul {
  margin: 0px;
  padding: 0px;
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
.vertical-tab-section ul li {
  margin: 0px 0px 0px 0px;
  padding: 20px 0 20px 0;
  display: flex;
}
.vertical-tab-section ul li i {
  display: inline-block;
  margin-right: 25px;
}
.vertical-tab-section ul li i img {
  max-width: 70px !important;
  flex: 0 0 70px;
  width: 40px;
}
.vertical-tab-section ul li span {
  display: inline-block;
  font-family: "Poppins";
  font-size: 18px;
  line-height: 27px;
  color: #242326;
  font-weight: 400;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .vertical-tab-section ul li span {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 1025px) {
  .vertical-tab-section ul li span {
    font-size: 14px;
    line-height: 22px;
  }
}
.vertical-tab-section .count-number {
  margin: 0px;
  padding: 0px;
  font-family: "Poppins";
  font-size: 128px;
  color: #E6E6E6;
  font-weight: 400;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .vertical-tab-section .count-number {
    font-size: 65px;
    line-height: 90px;
  }
}
@media (max-width: 1100px) {
  .vertical-tab-section .count-number {
    font-size: 80px;
    line-height: 100px;
  }
}
.vertical-tab-section h2 {
  margin: 0px 0px 40px 0px;
  padding: 0px;
  font-size: 76px;
  line-height: 73px;
  font-family: "Tenor Sans";
  color: #242326;
  font-weight: 400;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .vertical-tab-section h2 {
    font-size: 42px;
    line-height: 45px;
  }
}
@media (max-width: 1025px) {
  .vertical-tab-section h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
.vertical-tab-section p {
  margin: 0px 0px 50px 0px;
  padding: 0px;
  font-family: "Poppins";
  font-size: 22px;
  line-height: 38px;
  color: #242326;
  font-weight: 400;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .vertical-tab-section p {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1025px) {
  .vertical-tab-section p {
    font-size: 18px;
    line-height: 34px;
  }
}
.vertical-tab-section h4 {
  margin: 60px 0px 30px 0px;
  padding: 0px;
  font-family: "Tenor Sans";
  font-size: 46px;
  font-weight: 400;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .vertical-tab-section h4 {
    font-size: 30px;
    line-height: 30px;
    margin-top: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 1025px) {
  .vertical-tab-section h4 {
    font-size: 30px;
    margin: 30px 0px 30px 0px;
  }
}
.vertical-tab-section .slider-img {
  margin-top: 40%;
  position: relative;
  /* z-index: 100; */
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .vertical-tab-section .slider-img {
    margin-top: 30%;
  }
}

.home-about-section {
  padding: 295px 0px;
  background-size: cover !important;
  position: relative;
}
@media (max-width: 1100px) {
  .home-about-section .web-button {
    font-size: 15px;
  }
}
@media (max-width: 767.98px) {
  .home-about-section {
    background: none !important;
    padding: 80px 0;
  }
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .home-about-section {
    padding: 200px 0px;
  }
}
@media (max-width: 1100px) {
  .home-about-section {
    padding: 100px 0px 200px;
    background-size: cover !important;
  }
}
@media (max-width: 1025px) {
  .home-about-section {
    padding: 150px 0px 150px;
    background-position: 0% -47% !important;
  }
}
@media (max-width: 991.98px) {
  .home-about-section {
    padding: 60px 0px 90px;
  }
}
.home-about-section .mobile-home-about-img {
  display: none;
}
@media (max-width: 767.98px) {
  .home-about-section .mobile-home-about-img {
    display: block;
    width: 100%;
  }
}
.home-about-section h3 {
  font-family: "Tenor Sans";
  font-size: 78px;
  line-height: 108px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 70px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .home-about-section h3 {
    font-size: 58px;
    line-height: 78px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1100px) {
  .home-about-section h3 {
    font-size: 55px;
    line-height: 70px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1025px) {
  .home-about-section h3 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 991.98px) {
  .home-about-section h3 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 12px;
  }
}
@media (max-width: 767.98px) {
  .home-about-section h3 {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 40px;
  }
}
.home-about-section p {
  font-size: 22px;
  color: #1E1E20;
  line-height: 38px;
  margin-bottom: 70px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .home-about-section p {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 1100px) {
  .home-about-section p {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 1025px) {
  .home-about-section p {
    font-size: 15px;
    line-height: 30px;
  }
}
@media (max-width: 991.98px) {
  .home-about-section p {
    font-size: 12px;
    line-height: 22px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .home-about-section p {
    font-size: 16px;
    line-height: 25px;
  }
}
@media (max-width: 1025px) {
  .home-about-section p br {
    display: none;
  }
}
.home-about-section .gradient-potion {
  height: 355px;
  width: 100%;
  position: absolute;
  bottom: 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+75 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 75%, rgb(255, 255, 255) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=0 ); /* IE6-9 */
}
@media (max-width: 1100px) {
  .home-about-section .gradient-potion {
    height: 600px;
  }
}
@media (max-width: 1025px) {
  .home-about-section .gradient-potion {
    height: 500px;
    bottom: 0px;
  }
}
@media (max-width: 767.98px) {
  .home-about-section .gradient-potion {
    height: 300px;
    bottom: 75px;
  }
}
@media (max-width: 991.98px) {
  .home-about-section .gradient-potion {
    height: 400px;
    bottom: 0px;
    /*display: none;*/
  }
}

.three-coloum-content {
  margin-top: -100px;
  position: relative;
  padding-bottom: 100px;
}
@media (max-width: 991.98px) {
  .three-coloum-content {
    margin-top: 0;
    padding-top: 0px;
  }
}
@media (max-width: 767.98px) {
  .three-coloum-content {
    top: -45px;
  }
}
.three-coloum-content .cards {
  padding: 0 0px 0px 60px;
  /*border-left: 3px solid #F2F2F2;*/
  transition: 0.5s ease;
  margin-bottom: 70px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1600px) {
  .three-coloum-content .cards {
    margin-bottom: 40px;
  }
}
@media (max-width: 1025px) {
  .three-coloum-content .cards {
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .three-coloum-content .cards {
    padding: 0 0px 0px 20px !important;
    border-left: 3px solid #F2F2F2 !important;
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .three-coloum-content .cards i {
    width: 60px;
    display: inline-block;
    margin-right: 25px;
    vertical-align: top;
  }
}
.three-coloum-content .cards p {
  font-size: 22px;
  font-family: "Poppins";
  margin-top: 40px;
  font-weight: 400;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .three-coloum-content .cards p {
    font-size: 16px;
    line-height: 28px;
    margin-top: 30px;
  }
}
@media (max-width: 767.98px) {
  .three-coloum-content .cards p {
    font-size: 12px;
    line-height: 18px;
  }
}
@media (max-width: 1025px) {
  .three-coloum-content .cards p {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767.98px) {
  .three-coloum-content .cards p {
    display: inline-block;
    width: 65%;
    vertical-align: bottom;
    margin-top: 0;
  }
}
@media (max-width: 767.98px) {
  .three-coloum-content .cards p br {
    display: none;
  }
}
.three-coloum-content .cards::before {
  content: "";
  width: 3px;
  height: 100%;
  top: 0;
  left: 0;
  background: #f2f2f2;
  position: absolute;
  transition: 0.5s ease;
}
@media (max-width: 767.98px) {
  .three-coloum-content .cards::before {
    display: none;
  }
}
.three-coloum-content .cards::after {
  content: "";
  width: 3px;
  height: 100%;
  bottom: -100%;
  left: 0;
  background: #B79662;
  position: absolute;
  transition: 0.5s ease;
}
@media (max-width: 767.98px) {
  .three-coloum-content .cards::after {
    display: none;
  }
}

.three-coloum-content .cards:hover::after {
  bottom: 0;
  transition: 0.5s ease;
}
@media (max-width: 767.98px) {
  .three-coloum-content .cards:hover::after {
    display: none;
  }
}

.web-button {
  margin: 0px;
  padding: 20px 0px 36px 55px;
  background: url(../images/button-bg.svg) no-repeat 0px 0px;
  font-family: "Poppins";
  font-size: 24px;
  color: #B79662;
  text-transform: uppercase;
  transition: 0.5s ease;
  display: inline-block;
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
  font-weight: 500;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .web-button {
    font-size: 19px;
    line-height: 51px;
    padding: 13px 0px 36px 60px;
    letter-spacing: 2px;
  }
}
@media (max-width: 1025px) {
  .web-button {
    padding: 27px 0px 36px 66px;
    font-size: 15px;
    letter-spacing: 2px;
  }
}
@media (max-width: 767.98px) {
  .web-button {
    font-size: 15px;
    padding: 24px 0px 36px 55px;
    letter-spacing: 2px;
  }
}
.web-button:hover {
  background: url(../images/button-bg-hover.svg) no-repeat 0px 0px !important;
  color: #B79662;
}
.web-button:hover span {
  margin-left: 40px;
  transition: 0.5s ease;
  color: #B79662;
}

.counter-paragraph .web-button {
  margin: 0px;
  padding: 20px 0px 36px 55px;
  background: url(../images/banner-button.svg) no-repeat 0px 0px;
  font-family: "Poppins";
  font-size: 24px;
  color: #B79662;
  text-transform: uppercase;
  transition: 0.5s ease;
  display: inline-block;
  letter-spacing: 3px;
}
@media (max-width: 767.98px) {
  .counter-paragraph .web-button {
    font-size: 16px;
    padding: 24px 0px 36px 55px;
    letter-spacing: 2px;
  }
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .counter-paragraph .web-button {
    font-size: 20px;
    line-height: 51px;
    padding: 13px 0px 36px 55px;
  }
}
@media (max-width: 1025px) {
  .counter-paragraph .web-button {
    padding: 27px 0px 36px 66px;
    font-size: 15px;
    letter-spacing: 2px;
  }
}
.counter-paragraph .web-button:hover span {
  margin-left: 40px;
  transition: 0.5s ease;
}
.counter-paragraph .web-button:hover {
  background: url(../images/button-bg-hover.svg) no-repeat 0px 0px;
  color: #B79662;
}

.map-section {
  margin: 0px 0px;
  padding: 180px 0px;
  background: url(../images/map-bg.png) no-repeat top center;
  background-size: cover;
  text-align: center;
  background-attachment: fixed !important;
  position: relative;
  z-index: 1000;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .map-section {
    padding: 80px 0px;
  }
}
@media (max-width: 1025px) {
  .map-section {
    padding: 110px 0px;
    background-attachment: scroll !important;
  }
}
@media (max-width: 767.98px) {
  .map-section {
    padding: 110px 0px;
  }
}
.map-section h1 {
  margin: 0px 0px 100px 0;
  padding: 0px;
  font-family: "Tenor Sans";
  font-size: 78px;
  line-height: 92px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .map-section h1 {
    font-size: 58px;
    line-height: 69px;
    margin-bottom: 50px;
  }
}
@media (max-width: 1025px) {
  .map-section h1 {
    font-size: 45px;
    line-height: 60px;
  }
}
@media (max-width: 767.98px) {
  .map-section h1 {
    font-size: 32px;
    line-height: 37px;
  }
}
.map-section .outer {
  width: 100%;
}
@media (max-width: 1025px) {
  .map-section .outer {
    overflow-x: scroll;
    padding: 55% 25%;
  }
}
.map-section .outer .map-image-wrapper {
  margin: 0px;
  padding: 0px;
  position: relative;
  display: inline-block;
  width: 1055px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .map-section .outer .map-image-wrapper {
    width: 850px;
  }
}
.map-section .outer .map-image-wrapper .point-1 {
  position: absolute;
  top: 25%;
  left: 3%;
  text-align: center;
}
.map-section .outer .map-image-wrapper .map-logo {
  position: relative;
  top: 0%;
  left: 0%;
  text-align: center;
}
.map-section .outer .map-image-wrapper .map-logo .hover-logo {
  background-color: #fff;
  width: 235px;
  position: absolute;
  border-radius: 50px;
  top: -111px;
  left: -108px;
  z-index: 10;
}
.map-section .outer .map-image-wrapper .map-logo .hover-logo::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
  bottom: -10px;
  margin: auto;
  display: inline-block;
  left: 0;
  right: 0;
}
.map-section .outer .map-image-wrapper .map-logo .hover-logo img {
  margin: auto;
  padding: 25px 0;
}
.map-section .outer .map-image-wrapper .date {
  display: none;
}
.map-section .outer .map-image-wrapper .point-2 {
  position: absolute;
  top: 43%;
  left: 32%;
  text-align: center;
}
.map-section .outer .map-image-wrapper .point-3 {
  position: absolute;
  top: 32%;
  left: 58%;
  text-align: center;
}
.map-section .outer .map-image-wrapper .point-4 {
  position: absolute;
  top: 34%;
  left: 71%;
  text-align: center;
}
.map-section .outer .map-image-wrapper .point-5 {
  position: absolute;
  top: 50%;
  left: 69%;
  text-align: center;
}
.map-section .outer .map-image-wrapper .point-6 {
  position: absolute;
  top: 37%;
  left: 67%;
  text-align: center;
}
.map-section .outer .map-image-wrapper .point-7 {
  position: absolute;
  top: 23%;
  left: 52%;
  text-align: center;
}
.map-section .outer .map-image-wrapper .point-8 {
  position: absolute;
  top: 36%;
  left: 55%;
  text-align: center;
}
.map-section .outer .map-image-wrapper .point-9 {
  position: absolute;
  top: 55%;
  left: 60%;
  text-align: center;
}
.map-section .outer .map-image-wrapper .point-10 {
  position: absolute;
  top: 60%;
  left: 65%;
  text-align: center;
}
.map-section .outer .map-image-wrapper .point-11 {
  position: absolute;
  top: 30%;
  left: 61%;
  text-align: center;
}
.map-section .outer .map-image-wrapper .point-12 {
  position: absolute;
  top: 25%;
  left: 65%;
  text-align: center;
}
.map-section .outer .map-image-wrapper .point-13 {
  position: absolute;
  top: 15%;
  left: 68%;
  text-align: center;
}
.map-section .outer .map-image-wrapper .point-14 {
  position: absolute;
  top: 10%;
  left: 71%;
  text-align: center;
}
.map-section .outer .map-image-wrapper .point-15 {
  position: absolute;
  top: 10%;
  left: 83%;
  text-align: center;
}
.map-section .outer .map-image-wrapper .point-16 {
  position: absolute;
  top: 10%;
  left: 78%;
  text-align: center;
}
.map-section .outer .map-image-wrapper .point-17 {
  position: absolute;
  top: 15%;
  left: 81%;
  text-align: center;
}
.map-section .outer .map-image-wrapper .point-18 {
  position: absolute;
  top: 5%;
  left: 73%;
  text-align: center;
}
.map-section .outer .map-image-wrapper .point-19 {
  position: absolute;
  top: -2%;
  left: 80%;
  text-align: center;
}
.map-section .outer .map-image-wrapper .point-20 {
  position: absolute;
  top: -8%;
  left: 86%;
  text-align: center;
}
.map-section .outer .map-image-wrapper .point-21 {
  position: absolute;
  top: 22%;
  left: 90%;
  text-align: center;
}
.map-section .outer .map-image-wrapper .point-22 {
  position: absolute;
  top: 25%;
  left: 94%;
  text-align: center;
}
.map-section .outer .map-image-wrapper .point-23 {
  position: absolute;
  top: 28%;
  left: 75%;
  text-align: center;
}

.desktop-top-line {
  display: block;
}
@media (max-width: 991.98px) {
  .desktop-top-line {
    display: none;
  }
}

.mobile-top-line {
  display: none;
}
@media (max-width: 991.98px) {
  .mobile-top-line {
    display: block;
  }
}

.desktop-bottom-line {
  display: block;
}
@media (max-width: 767.98px) {
  .desktop-bottom-line {
    display: none;
  }
}

.mobile-bottom-line {
  display: none;
}
@media (max-width: 767.98px) {
  .mobile-bottom-line {
    display: block;
  }
}

.demo-accordion {
  display: none;
}
@media (max-width: 1100px) {
  .demo-accordion {
    display: block;
  }
}

.acc_section .acc_head {
  background: url("../images/acc-closed-arrow.svg") no-repeat 95% center !important;
  border-bottom: 1px solid #ccc;
}

.acc_section.acc_active .acc_head {
  background: url("../images/acc-open-arrow.svg") no-repeat 95% center !important;
}

.accordionjs .acc_section.acc_active > .acc_head {
  border-bottom: none !important;
}

.accordionjs .acc_section .acc_head h3 {
  font-family: "Poppins";
  font-size: 18px;
  line-height: 22px !important;
  font-weight: 600;
}

li.acc_section.acc_active .acc_head h3 {
  color: #B79662;
}

.accordionjs .acc_section {
  border: none !important;
}

.acc_content .count-number {
  margin: 0px;
  padding: 0px;
  font-family: "Poppins";
  font-size: 66px;
  color: #E6E6E6;
  font-weight: 400;
  font-style: inherit;
}
.acc_content h2 {
  margin: 0px 0px 40px 0px;
  padding: 0px;
  font-size: 32px;
  line-height: 34px;
  font-family: "Tenor Sans";
  color: #242326;
  font-weight: 400;
}
.acc_content p {
  margin: 0px 0px 50px 0px;
  padding: 0px;
  font-family: "Poppins";
  font-size: 16px;
  line-height: 25px;
  color: #242326;
  font-weight: 400;
}
.acc_content h4 {
  margin: 0px 0px 40px 0px;
  padding: 0px;
  font-size: 28px;
  line-height: 34px;
  font-family: "Tenor Sans";
  color: #242326;
  font-weight: 400;
}
.acc_content ul {
  margin: 0px;
  padding: 0px;
}
.acc_content ul li {
  margin: 0px;
  padding: 0px;
}
@media (max-width: 767.98px) {
  .acc_content ul li {
    margin: 0px 0 25px 0;
  }
}
.acc_content ul li i {
  display: inline-block;
  width: 15%;
  vertical-align: top;
}
@media (max-width: 767.98px) {
  .acc_content ul li i {
    margin-right: 5%;
    width: 7%;
  }
}
@media (max-width: 812px) {
  .acc_content ul li i img {
    width: 40px;
  }
}
@media (max-width: 812px) {
  .acc_content ul li i img {
    width: 40px;
  }
}
.acc_content ul li span {
  display: inline-block;
  width: 80%;
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  .acc_content ul li span {
    margin-bottom: 0;
    padding-bottom: 0;
    vertical-align: -webkit-baseline-middle;
    vertical-align: sub;
  }
}
.acc_content .division {
  width: 100%;
  height: 2px;
  background: #E5C59D;
  display: block;
}
@media (max-width: 1025px) {
  .acc_content .web-button {
    padding: 27px 0px 36px 66px;
    margin: 25px auto;
    font-size: 15px;
    letter-spacing: 2px;
    display: table;
  }
}

.left-ul.mobile-section {
  margin: 10px 0px 0px 0px;
  padding: 0px;
}
.left-ul.mobile-section li {
  margin: 0px;
  letter-spacing: 2px;
}
.left-ul.mobile-section li span {
  color: #FFFFFF;
  font-size: 16px;
  margin: 0px 0px 0px 32px;
  font-family: "Poppins" !important;
  font-weight: 400;
}
.left-ul.mobile-section li a {
  color: #B79662;
  font-size: 16px;
  margin: 0px 0px 0px 17px;
  font-family: "Poppins" !important;
  font-weight: 400;
}
.left-ul.mobile-section .sticky-li {
  display: inline-block;
}
.left-ul.mobile-section .sticky-li .no-margin {
  margin: 0;
}

@media (max-width: 1310px) {
  #wprmenu_menu_ul .sub-menu-toggle {
    display: block !important;
    position: absolute;
    right: 38px;
    top: 6px;
    background: transparent;
    padding: 0px 0px;
  }
  #wprmenu_menu_ul .sub-menu-toggle .icon-minus {
    color: #B79662;
    font-size: 20px;
  }
  #wprmenu_menu_ul .sub-menu-toggle .icon-plus {
    display: block;
    color: #B79662;
    font-size: 20px;
  }
}
#wprmenu_menu_ul li.active .sub-menu-toggle .icon-minus {
  display: block !important;
}

#wprmenu_menu_ul li.active .sub-menu-toggle .icon-plus {
  display: none !important;
}

#wprmenu_menu_ul li .sub-menu-toggle .icon-minus {
  display: none !important;
}

#wprmenu_menu_ul li .sub-menu-toggle .icon-plus {
  display: block !important;
}

#wprmenu_menu_ul li.active .sub-menu {
  display: block !important;
}

#wprmenu_menu_ul li .sub-menu {
  display: none !important;
}

ul#menu-resource li a {
  color: #b0b0b0;
  margin: 0px;
  padding: 0px 30px 50px 0px;
  font-size: 18px;
  color: #b0b0b0;
  text-transform: capitalize;
  letter-spacing: 0;
  background: url("../images/resource-drop-down.png") no-repeat no-repeat 100% 7px;
  font-weight: 400;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  ul#menu-resource li a {
    font-size: 16px;
  }
}

li.display {
  position: relative;
}

ul#menu-resource .sub-menu {
  text-align: left;
  top: 45px;
  position: absolute;
  right: 0;
}

ul#menu-resource .sub-menu li {
  display: block !important;
  padding: 0px 0px !important;
  margin: 0 !important;
  margin-bottom: 10px !important;
  font-size: 18px !important;
  font-weight: 300 !important;
  color: #fff !important;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  ul#menu-resource .sub-menu li {
    font-size: 15px !important;
    margin-bottom: 5px !important;
  }
}

ul#menu-resource .sub-menu li a {
  color: #fff !important;
  font-weight: 300;
  background: none;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  ul#menu-resource .sub-menu li a {
    font-size: 15px !important;
  }
}

ul#menu-resource .sub-menu li a:hover {
  background: #9B7943;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
}

ul#menu-resource .sub-menu::before {
  right: 10% !important;
  left: auto;
}

li#menu-item-657 {
  display: none;
}

.connect-icons-wrapper .wpcf7-response-output {
  color: #fff !important;
}

ul#menu-resource, ul#menu-business-setup, ul#menu-footer-nav {
  display: block !important;
}

.home-banner .main-menu ul li a:hover {
  color: #B79662;
}

.home-banner .main-menu ul li .sub-menu ul li a:hover {
  color: #fff !important;
}

.pagenation-div {
  margin: 0px;
  padding: 0px 0px;
  position: absolute;
  top: 10%;
  right: 0;
  max-width: 370px;
  width: 100%;
  text-align: right;
}
.pagenation-div ul {
  margin: 0px;
  padding: 0px 0px;
  -moz-columns: 1;
       columns: 1;
}
.pagenation-div ul li {
  margin-bottom: 70px !important;
  display: block;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .pagenation-div ul li {
    margin-bottom: 45px !important;
  }
}
.pagenation-div ul li a {
  cursor: pointer !important;
  width: 340px !important;
  border-radius: 0 !important;
  padding: 10px 0px !important;
  text-align: right !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  font-family: "Poppins" !important;
  color: #000 !important;
  height: auto !important;
  background: none !important;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .pagenation-div ul li a {
    font-size: 17px !important;
    line-height: 28px;
  }
}

.pagenation-div.stick {
  position: fixed !important;
  top: 25% !important;
  right: 4.5% !important;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .pagenation-div.stick {
    top: 15% !important;
  }
}

.pagenation-div ul li.active {
  border-bottom: 3px solid #E5C59D;
}

.pagenation-div ul li.active a {
  color: #E5C59D !important;
}

#scrollUp {
  border-radius: 3px;
  opacity: 0.7;
  bottom: 20px;
  left: 20px !important;
  background: #b79662 !important;
}

ul.demo-accordion.accordionjs .acc_content img {
  width: 75%;
  margin: auto;
}

@media (max-width: 991.98px) {
  .home-about-section p {
    padding: 0px 12% 0px 0px;
  }
}

h2.h2-title-section.blog-heading.aos-init.aos-animate br {
  display: block;
}

@media (min-width: 1400px) and (max-width: 1490px) {
  .pagenation-div.stick {
    right: 7.5% !important;
  }
  img.slider-img.stick {
    width: 34% !important;
  }
}
.home-banner.inner-banner {
  /*min-height: 750px;*/
  /* background-image: linear-gradient(180deg, #0D0D0E, #424243);*/
}
.home-banner.inner-banner h1, .home-banner-inner-banner-h1 {
  margin-top: 160px;
  font-size: 88px;
  /*font-family: "Kiona";*/
  font-family: 'Trakya-Sans-300';
  text-transform: capitalize;
  color: white;
  line-height: 105px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .home-banner.inner-banner h1, .home-banner-inner-banner-h1 {
    font-size: 90px;
   /* line-height: 70px;*/
    line-height: 80px;
  }
}
@media (max-width: 1100px) {
  .home-banner.inner-banner h1, .home-banner-inner-banner-h1 {
    margin-top: 80px;
    font-size: 60px;
    line-height: 80px;
  }
}
@media (max-width: 1025px) {
  .home-banner.inner-banner h1, .home-banner-inner-banner-h1 {
    margin-top: 80px;
    font-size: 60px;
    line-height: 80px;
  }
}
@media (max-width: 991.98px) {
  .home-banner.inner-banner h1, .home-banner-inner-banner-h1 {
    margin-top: 80px;
    font-size: 44px;
    line-height: 64px;
  }
}
.home-banner.inner-banner h1 span, .home-banner-inner-banner-h1 span {
  color: #B79662;
}
.home-banner.inner-banner .blog-banner h1, .home-banner-inner-banner-h1 {
  margin-top: 35px;
	display: block;
}
.home-banner.inner-banner .scroll-down {
  position: relative;
  left: inherit;
  margin-top: 40px;
  background: none;
  width: 120px;
  z-index: 9;
}
.home-banner.inner-banner .scroll-down:hover {
  border: 0;
  transform: inherit;
}
.home-banner.inner-banner .scroll-down:hover::after {
  border: 1px solid #424345;
  background: transparent;
  transition: 0.5s ease;
  width: 130px;
  height: 130px;
}
.home-banner.inner-banner .scroll-down::after {
  content: "";
  background: #424345;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  position: absolute;
  z-index: -1;
}

.inner-counter {
  padding: 65px 0px 75px;
  position: relative;
  text-align: center;
  /*background-image: linear-gradient(180deg, #282828, #424243);*/
  background-image: linear-gradient(180deg, #242424, #424243);
}
@media (max-width: 1025px) {
  .inner-counter {
    padding: 55px 0;
  }
}
@media (max-width: 767.98px) {
  .inner-counter {
    padding: 55px 0;
    /* background-image: linear-gradient(180deg, #1f1f1f, #424243);*/
    background-image: linear-gradient(180deg, #1c1c1c, #424243);
  }
}
.inner-counter p {
  color: white;
  line-height: 38px;
  font-family: "Poppins";
  font-weight: 300;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .inner-counter p {
    font-size: 16px;
    line-height: 30px;
  }
}
@media (max-width: 1025px) {
  .inner-counter p {
    font-size: 16px;
    line-height: 34px;
  }
}
@media (max-width: 767.98px) {
  .inner-counter p {
    font-size: 16px;
    line-height: 34px;
  }
}
.inner-counter .top-line {
  position: absolute;
  text-align: center;
  top: -180px;
  margin: auto;
  display: inline-block;
}
@media (max-width: 1025px) {
  .inner-counter .top-line {
    top: -90px;
  }
}
.inner-counter .top-line img {
  height: 150px;
}
@media (max-width: 767.98px) {
  .inner-counter .top-line {
    top: -150px;
  }
}
.inner-counter h2 {
  font-family: "Tenor Sans";
  font-size: 84px;
  line-height: 86px;
  color: #B79662;
  font-weight: 400;
  margin-bottom: 35px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .inner-counter h2 {
    font-size: 58px;
    line-height: 56px;
  }
}
@media (max-width: 1025px) {
  .inner-counter h2 {
    font-size: 42px;
    line-height: 44px;
  }
}
@media (max-width: 991.98px) {
  .inner-counter h2 {
    font-size: 36px;
    line-height: 38px;
  }
}
.inner-counter .counter-wrapper {
  margin: 15px 0px 30px 0px;
  text-align: left;
}
.inner-counter .counter-wrapper p {
  line-height: 28px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .inner-counter .counter-wrapper p {
    line-height: 20px;
  }
}
@media (max-width: 1025px) {
  .inner-counter .counter-wrapper p {
    line-height: normal;
  }
}
.inner-counter .counter-wrapper .count {
  margin: 0px;
  padding: 0px;
}
.inner-counter .counter-wrapper .count .counter {
  font-family: "Tenor Sans";
  font-size: 84px;
  color: #B79662;
  display: inline-block;
  margin-bottom: 0px;
  font-weight: 400;
  margin-right: 20px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .inner-counter .counter-wrapper .count .counter {
    font-size: 58px;
    line-height: 62px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1025px) {
  .inner-counter .counter-wrapper .count .counter {
    font-size: 35px;
    line-height: 52px;
    margin-bottom: 15px;
  }
}
.inner-counter .counter-wrapper .count-bx {
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .inner-counter .counter-wrapper .count-bx {
    display: block;
    text-align: center;
    margin-bottom: 25px;
  }
}
.inner-counter .counter-wrapper .count-bx i {
  font-size: 58px;
  line-height: 62px;
  font-family: "Tenor Sans";
  font-size: 84px;
  color: #B79662;
  font-style: normal;
  display: none;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .inner-counter .counter-wrapper .count-bx i {
    font-size: 58px;
    line-height: 62px;
  }
}
@media (max-width: 1025px) {
  .inner-counter .counter-wrapper .count-bx i {
    font-size: 56px;
    line-height: 60px;
  }
}

.extend-image-sec {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.extend-image-sec img {
  border-radius: 50px;
}
.extend-image-sec .img-pos-1 {
  max-width: 55%;
  flex: 0 0 55%;
  padding-right: 2%;
}
.extend-image-sec .img-pos-1 img {
  position: relative;
}
.extend-image-sec .img-pos-2 {
  max-width: 45%;
  flex: 0 0 45%;
  padding-right: 5%;
  padding-left: 2%;
}
.extend-image-sec .img-pos-2 img {
  position: relative;
  top: 5%;
}
.extend-image-sec .img-pos-3 {
  max-width: 100%;
  flex: 0 0 100%;
  padding-left: 12%;
  padding-right: 12%;
  position: relative;
  z-index: 1;
}
.extend-image-sec .img-pos-3 img {
  position: relative;
  top: -20%;
}

.chairman-message {
  padding: 0;
  position: relative;
  border-bottom: 8px solid #B79662;
}
.chairman-message .chairman-img {
  width: 100%;
  height: 100%;
  position: absolute;
  background: url(../images/message-pattern.png) center top no-repeat;
  background-size: contain;
}
@media (max-width: 991.98px) {
  .chairman-message .chairman-img {
    background: url(../images/message-pattern-mob.png) center center no-repeat;
    position: inherit;
    background-size: cover;
  }
}
.chairman-message .pos-message-box {
  position: absolute;
  left: 60px;
  top: 120px;
}
@media (max-width: 1025px) {
  .chairman-message .pos-message-box {
    top: 70px;
  }
}
@media (max-width: 991.98px) {
  .chairman-message .pos-message-box {
    left: inherit;
    position: inherit;
  }
}
.chairman-message h3 {
  font-family: "Tenor Sans";
  font-size: 76px;
  line-height: 75px;
  color: #B79662;
  font-weight: 400;
  margin-bottom: 35px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .chairman-message h3 {
    font-size: 52px;
    line-height: 53px;
  }
}
@media (max-width: 1025px) {
  .chairman-message h3 {
    font-size: 52px;
    line-height: 50px;
  }
}
@media (max-width: 767.98px) {
  .chairman-message h3 {
    font-size: 36px;
    line-height: 40px;
  }
}
.chairman-message p {
  font-family: "Poppins";
  line-height: 38px;
  font-weight: 400;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .chairman-message p {
    line-height: 30px;
  }
}
@media (max-width: 1025px) {
  .chairman-message p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 991.98px) {
  .chairman-message .d-lg-block {
    /*display: block!important;*/
    height: 800px;
  }
}

.awardrs-certi-wrap {
  padding: 100px 0;
}
.awardrs-certi-wrap .p-end-5 {
  padding-right: 12rem !important;
  font-weight: 400;
}
@media (max-width: 575.98px) {
  .awardrs-certi-wrap .p-end-5 {
    padding-right: 3rem !important;
  }
}
.awardrs-certi-wrap p {
  font-family: "Poppins";
}
.awardrs-certi-wrap h3 {
  font-family: "Tenor Sans";
  font-size: 78px;
  line-height: 92px;
  color: #1E1E20;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 35px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .awardrs-certi-wrap h3 {
    font-size: 52px;
    line-height: 66px;
  }
}
@media (max-width: 1025px) {
  .awardrs-certi-wrap h3 {
    font-size: 52px;
    line-height: 66px;
  }
}
@media (max-width: 767.98px) {
  .awardrs-certi-wrap h3 {
    font-size: 32px;
    line-height: 44px;
  }
}
.awardrs-certi-wrap .showcase #content-9.content {
  height: 650px;
  padding: 5px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .awardrs-certi-wrap .showcase #content-9.content {
    height: 560px;
  }
}
@media (max-width: 575.98px) {
  .awardrs-certi-wrap .showcase #content-9.content {
    height: 434px;
  }
}
.awardrs-certi-wrap .showcase #content-9.content .mCSB_container {
  margin-right: 21px;
}
@media (max-width: 767.98px) {
  .awardrs-certi-wrap .showcase #content-9.content .mCSB_container {
    padding-left: 24px;
  }
}
.awardrs-certi-wrap .showcase #content-9.content ul li a {
  box-shadow: 0px 28px 40px rgba(123, 123, 123, 0.1294117647);
  border-radius: 40px;
  width: 360px;
  height: 266px;
  margin: 15px 0;
  display: block;
  margin-bottom: 45px;
  transition: 0.5s ease;
  cursor: default;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .awardrs-certi-wrap .showcase #content-9.content ul li a {
    width: 346px;
    height: 216px;
  }
}
@media (max-width: 1025px) {
  .awardrs-certi-wrap .showcase #content-9.content ul li a {
    width: 260px;
    height: 196px;
  }
}
@media (max-width: 991.98px) {
  .awardrs-certi-wrap .showcase #content-9.content ul li a {
    width: 80% !important;
    height: 196px;
  }
}
@media (max-width: 767.98px) {
  .awardrs-certi-wrap .showcase #content-9.content ul li a {
    width: 80% !important;
    height: 196px;
  }
}
.awardrs-certi-wrap .showcase #content-9.content ul li a .hover-img {
  display: block;
}
.awardrs-certi-wrap .showcase #content-9.content ul li a .img-hover {
  display: none;
}
.awardrs-certi-wrap .showcase #content-9.content ul li a:hover {
  background: #B79662;
}
.awardrs-certi-wrap .showcase #content-9.content ul li a:hover .hover-img {
  display: none;
}
.awardrs-certi-wrap .showcase #content-9.content ul li a:hover .img-hover {
  display: block;
}
.awardrs-certi-wrap .showcase #content-9.content ul li a:hover svg {
  fill: #fff;
  filter: invert(35.5) sepia(23) saturate(0) brightness(5);
}
.awardrs-certi-wrap .showcase #content-9.content ul {
  padding: 0 0 0 50px;
  margin: 0;
}
@media (max-width: 767.98px) {
  .awardrs-certi-wrap .showcase #content-9.content ul {
    padding: 0 0 0 0;
  }
}
.awardrs-certi-wrap .showcase #content-9.content img {
  padding: 0;
  vertical-align: bottom;
  margin: 0 auto;
  transform: translateY(-50%);
  top: 50%;
  position: relative;
  display: table;
}
@media (max-width: 575.98px) {
  .awardrs-certi-wrap .showcase #content-9.content img {
    width: 50%;
  }
}
.awardrs-certi-wrap .mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: url(../images/about-scroll-button.png) no-repeat 0px 0px;
  background-size: contain;
  padding: 20px;
  border-radius: 50%;
}
.awardrs-certi-wrap .mCSB_scrollTools {
  left: inherit;
  right: 15px;
  height: 60%;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 575.98px) {
  .awardrs-certi-wrap .mCSB_scrollTools {
    right: 15px;
  }
}

.mCSB_scrollTools .mCSB_draggerRail {
  width: 10px !important;
  background-color: #F2F2F2 !important;
}

.mCSB_scrollTools a + .mCSB_draggerContainer {
  margin: 20px -14px !important;
}

.crosslinks-wraper {
  padding: 0 0 100px 0;
}
.crosslinks-wraper h4 {
  font-family: "Poppins";
  position: absolute;
  font-size: 26px;
  line-height: 44px;
  letter-spacing: 1.6px;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  top: 50%;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  transform: translateY(-50%);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .crosslinks-wraper h4 {
    font-size: 21px;
    line-height: 44px;
    font-weight: 300;
    letter-spacing: 5px;
  }
}
@media (max-width: 1025px) {
  .crosslinks-wraper h4 {
    font-size: 18px;
    line-height: 38px;
  }
}
@media (max-width: 767.98px) {
  .crosslinks-wraper h4 {
    font-size: 16px;
    line-height: 36px;
  }
}
.crosslinks-wraper h4 a {
  color: #fff;
  position: relative;
}
.crosslinks-wraper h4 a:after {
  content: "";
  /*position: absolute;

  height: 6px;
  bottom: 0;
  margin: -10px 0;
  background-color: #B79662;*/
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.4s ease-in-out 0s;
  width: 20%;
  margin: 15px auto 0;
  display: block;
  border-bottom: 5px solid #B79662;
}
.crosslinks-wraper h4 a:hover:after {
  visibility: visible;
  transform: scaleX(1);
}
.crosslinks-wraper .crosslink-box {
  position: relative;
}

.contact-wraper {
  padding: 55px 0;
  position: relative;
  text-align: center;
  background-image: linear-gradient(180deg, #101010, #404041);
  /* background: linear-gradient(to bottom, rgba(16,16,16,1),#404041);*/
  color: #fff;
}
.contact-wraper .container-movable {
  margin-top: -393px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .contact-wraper .container-movable {
    margin-top: -300px;
  }
}
@media (max-width: 1100px) {
  .contact-wraper .container-movable {
    margin-top: -250px;
  }
}
.contact-wraper p {
  color: #fff;
  margin-bottom: 55px;
}
@media (max-width: 1600px) {
  .contact-wraper p {
    font-size: 17px;
    font-weight: 300;
  }
}
.contact-wraper h3 {
  font-family: "Tenor Sans";
  font-size: 78px;
  line-height: 92px;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .contact-wraper h3 {
    font-size: 58px;
    line-height: 70px;
  }
}
@media (max-width: 1025px) {
  .contact-wraper h3 {
    font-size: 54px;
    line-height: 64px;
  }
}
@media (max-width: 991.98px) {
  .contact-wraper h3 {
    font-size: 34px;
    line-height: 44px;
  }
}
.contact-wraper .cnt-details img {
  margin-right: 20px;
  width: 13%;
  margin-top: 4px;
}
@media (max-width: 767.98px) {
  .contact-wraper .cnt-details img {
    width: 44px;
  }
}
.contact-wraper .cnt-details span {
  font-size: 18px;
  line-height: 24px;
  font-family: "Poppins";
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .contact-wraper .cnt-details span {
    font-size: 12px;
    line-height: 19px;
    font-weight: 200;
  }
}
@media (max-width: 1025px) {
  .contact-wraper .cnt-details span {
    font-size: 13px;
    line-height: 20px;
  }
}
.contact-wraper .cnt-details span small {
  color: #B79662;
  font-size: 16px;
  line-height: 24px;
  display: block;
}
.contact-wraper .cnt-details span a {
  color: #fff;
}
.contact-wraper .cnt-details span a:hover {
  color: #B79662;
}
@media (max-width: 991.98px) {
  .contact-wraper .cnt-details span a {
    word-break: break-all;
  }
}
.contact-wraper .general-form input,
.contact-wraper .general-form select,
.contact-wraper .general-form textarea {
  border-radius: 10px;
  border: 1px solid #B79662;
  background: transparent;
  width: 100%;
  padding: 18px 15px;
  font-size: 16px;
  color: #B79662 !important;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.contact-wraper .general-form input::-moz-placeholder, .contact-wraper .general-form select::-moz-placeholder, .contact-wraper .general-form textarea::-moz-placeholder {
  color: #B79662;
}
.contact-wraper .general-form input:-ms-input-placeholder, .contact-wraper .general-form select:-ms-input-placeholder, .contact-wraper .general-form textarea:-ms-input-placeholder {
  color: #B79662;
}
.contact-wraper .general-form input::placeholder,
.contact-wraper .general-form select::placeholder,
.contact-wraper .general-form textarea::placeholder {
  color: #B79662;
}
.contact-wraper .general-form input:focus-visible,
.contact-wraper .general-form select:focus-visible,
.contact-wraper .general-form textarea:focus-visible {
  outline: auto;
}
.contact-wraper .general-form select {
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
  background: url(../images/select-drop.png) no-repeat right 25px;
}
.contact-wraper .general-form textarea {
  height: 190px;
}
.contact-wraper .general-form label {
  margin-bottom: 5px;
}

.contact-page .web-button {
  background: url(../images/button-submit.svg) no-repeat 0px 0px !important;
}

.location-wraper {
  padding: 100px 0 200px 0;
  text-align: center;
  position: relative;
  background: url(../images/second-fold-bg.png) no-repeat 50px center #fff;
}
.location-wraper p {
  font-family: "Poppins";
}
.location-wraper h2 {
  margin-top: 160px;
  margin-bottom: 20px;
  font-size: 78px;
  font-family: "Tenor Sans";
  text-transform: uppercase;
  color: #000;
  line-height: 104px;
}
.location-wraper h2 span {
  color: #C09C3F;
  display: block;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .location-wraper h2 {
    font-size: 58px;
    line-height: 68px;
    margin-top: 190px;
  }
}
@media (max-width: 1025px) {
  .location-wraper h2 {
    font-size: 62px;
    line-height: 88px;
  }
}
@media (max-width: 575.98px) {
  .location-wraper h2 {
    font-size: 42px;
    line-height: 68px;
  }
}
.location-wraper .location-map {
  margin-top: 160px;
}
.location-wraper .top-line {
  position: absolute;
  text-align: center;
  top: -40px;
  margin: auto;
  display: inline-block;
}
@media (max-width: 1025px) {
  .location-wraper .top-line {
    top: -40px;
  }
}
.location-wraper .top-line img {
  height: 220px;
}
@media (max-width: 767.98px) {
  .location-wraper .top-line {
    top: -35px;
  }
}
.location-wraper .bottom-line {
  position: absolute;
  text-align: center;
  bottom: 0px;
  margin: auto;
  display: inline-block;
}
@media (max-width: 1025px) {
  .location-wraper .bottom-line {
    bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .location-wraper .bottom-line {
    bottom: 45px;
  }
}

.banner-specs {
  padding-top: 140px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .banner-specs {
    padding-top: 95px;
  }
}
@media (max-width: 1025px) {
  .banner-specs {
    padding-top: 80px;
  }
}
@media (max-width: 991.98px) {
  .banner-specs {
    padding-top: 20px;
    padding-left: 6%;
    padding-right: 6%;
  }
}
@media (max-width: 767.98px) {
  .banner-specs {
    padding-top: 100px;
  }
}
@media (max-width: 575.98px) {
  .banner-specs {
    padding-top: 35px;
  }
}
.banner-specs img {
  width: 12%;
}
@media (max-width: 767.98px) {
  .banner-specs img {
    width: 12%;
  }
}
.banner-specs P {
  line-height: normal;
  color: #fff;
  font-size: 18px;
  padding-left: 20px;
  margin-bottom: 0;
}
@media (max-width: 1025px) {
  .banner-specs P {
    font-size: 16px;
  }
}
.banner-specs .brk-line {
  background: url(../images/sep-line.png) right no-repeat;
}
.banner-specs .brk-line:nth-child(3) {
  background: none;
}
@media (max-width: 767.98px) {
  .banner-specs .brk-line {
    background: none;
  }
}

.trusted-advise-wrapper.trusted-advise-inner {
  margin-bottom: 0px;
}
.trusted-advise-wrapper.trusted-advise-inner .heading-section {
  padding: 240px 0 60px 0;
}
@media (max-width: 991.98px) {
  .trusted-advise-wrapper.trusted-advise-inner .heading-section .top-line {
    top: -30px;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .heading-section h2 {
  margin-bottom: 20px;
  font-weight: 400;
}
.trusted-advise-wrapper.trusted-advise-inner .heading-section h2 span {
  color: #B79662;
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.visa-apply-wrap {
  padding-top: 10px;
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.for-help-wrap {
  padding-bottom: 50px;
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.for-help-wrap h3, .for-help-wrap .trusted-advise-wrapper-trusted-advise-inner-legal-freelance-wrap-h3 {
  color: #3C3C3D;
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.for-help-wrap h4 {
  color: #fff;
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.for-help-wrap p {
  color: #fff;
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.for-help-wrap .web-button {
  background: url(../images/button-submit.svg) no-repeat 0px 0px;
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.for-help-wrap .web-button:hover {
  background: url(../images/button-bg-hover.svg) no-repeat 0px 0px;
  color: #B79662;
}
@media (max-width: 767.98px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.for-help-wrap {
    background: #101012;
    padding-bottom: 0;
  }
}
@media (max-width: 991.98px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.for-help-wrap .legal-freelance-box {
    background-color: #101012;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper {
  /*--- Remove Bootstrap's styling for Nav Class if needed ---*/
  /*--- Wrap Up ---*/
}
.trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .card {
  border: 0;
}
.trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .card .card-body {
  padding: 0;
}
.trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .ProductNav_Wrapper {
  position: relative;
}
.trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .ProductNav_Wrapper::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 42px;
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.59) 59%, rgb(255, 255, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#ffffff", GradientType=1);
  top: 0;
  z-index: 9;
}
.trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper #ProductNav .nav,
.trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper #ProductNav2 .nav {
  display: inherit;
  flex-wrap: inherit;
  padding-left: inherit;
  margin-bottom: inherit;
  list-style: inherit;
}
.trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .ProductNav_Wrapper {
  position: relative;
  padding: 0 11px;
  box-sizing: border-box;
  display: flex;
}
.trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .ProductNav {
  margin: 0 auto;
  /* Make this scrollable when needed */
  overflow-x: auto;
  /* We don't want vertical scrolling */
  overflow-y: hidden;
  /* For WebKit implementations, provide inertia scrolling */
  -webkit-overflow-scrolling: touch;
  /* We don't want internal inline elements to wrap */
  white-space: nowrap;
  /* If JS present, let's hide the default scrollbar */
  /* positioning context for advancers */
  position: relative;
  font-size: 0;
}
.js .trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .ProductNav {
  /* Make an auto-hiding scroller for the 3 people using a IE */
  -ms-overflow-style: -ms-autohiding-scrollbar;
  /* Remove the default scrollbar for WebKit implementations */
}
.js .trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .ProductNav::-webkit-scrollbar {
  display: none;
}
.trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .ProductNav_Contents {
  float: left;
  transition: transform 0.2s ease-in-out;
  position: relative;
}
.trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .ProductNav_Contents-no-transition {
  transition: none;
}
.trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .ProductNav_Link {
  text-decoration: none;
  color: #1E1E20;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
  padding: 10px 10px;
  line-height: 1.35;
  font-family: "Poppins";
  font-size: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  margin-left: 33px;
  margin-right: 33px;
  margin-bottom: -1px;
  z-index: 9;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .ProductNav_Link {
    font-size: 14px;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media (max-width: 1025px) {
  .trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .ProductNav_Link {
    font-size: 15px;
    letter-spacing: 1px;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .ProductNav_Link.active {
  color: #C5A36E;
  background: #101011;
}
.trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .ProductNav_Link.active::before {
  content: "";
  position: absolute;
  border-radius: 8px 0 0 0;
  background-color: #101011;
  transform: skew(-30deg, 0deg);
  display: block;
  height: 104%;
  width: 40px;
  left: -20px;
  top: 0;
  z-index: -1;
}
.trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .ProductNav_Link.active::after {
  content: "";
  position: absolute;
  border-radius: 0 8px 0 0;
  background-color: #101011;
  transform: skew(30deg, 0deg);
  display: block;
  height: 104%;
  width: 40px;
  right: -20px;
  top: 0;
  z-index: -1;
}
.trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .Advancer {
  /* Reset the button */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  padding: 0;
  border: 0;
  /* Now style it as needed */
  position: absolute;
  top: 0;
  bottom: 0;
  /* Set the buttons invisible by default */
  opacity: 0;
  transition: opacity 0.3s;
}
.trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .Advancer:focus {
  outline: 0;
}
.trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .Advancer:hover {
  cursor: pointer;
}
.trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .Advancer_Left {
  left: 0;
}
[data-overflowing=both] ~ .trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .Advancer_Left, [data-overflowing=left] ~ .trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .Advancer_Left {
  opacity: 1;
}
.trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .Advancer_Right {
  right: 0;
}
[data-overflowing=both] ~ .trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .Advancer_Right, [data-overflowing=right] ~ .trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .Advancer_Right {
  opacity: 1;
}
.trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .Advancer_Icon {
  width: 12px;
  height: 44px;
  fill: #bbb;
}
.trusted-advise-wrapper.trusted-advise-inner .scrolltab-wraper .ProductNav_Indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100px;
  background-color: transparent !important;
  transform-origin: 0 0;
  transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.trusted-advise-wrapper.trusted-advise-inner .blog-scrolltab-wraper .card {
  border: 0;
}
@media (max-width: 991.98px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.why-business-wrap {
    background-image: linear-gradient(#101011, #38383B, #38383B, #38383B);
  }
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.why-business-wrap h3 {
  color: #3C3C3D;
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.why-business-wrap h4 {
  color: #fff;
}
@media (max-width: 991.98px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.why-business-wrap h4 {
    color: #B79662;
    margin-bottom: 45px;
    font-size: 30px;
    line-height: 36px;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.why-business-wrap h5 {
  color: #fff;
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.why-business-wrap p {
  color: #fff;
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.why-business-wrap .web-button {
  background: url(../images/button-submit.svg) no-repeat 0px 0px;
}
@media (max-width: 767.98px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.why-business-wrap {
    background-image: linear-gradient(#101011, #38383B, #38383B, #38383B);
    padding-bottom: 0;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.why-business-wrap .button-icon a {
  display: flex;
  background: #C5A36E;
  border-radius: 15px;
  color: #fff;
  font-size: 18px;
  font-family: "Poppins";
  line-height: 27px;
  align-items: center;
  padding: 10px 16px;
  margin-bottom: 35px;
  transition: 0.5s ease;
  min-height: 110px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.why-business-wrap .button-icon a {
    margin-bottom: 15px;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.why-business-wrap .button-icon a img {
  padding-right: 0px;
  width: 45px;
  height: 45px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.why-business-wrap .button-icon a {
    font-size: 14px;
    line-height: 21px;
  }
}
@media (max-width: 1025px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.why-business-wrap .button-icon a {
    font-size: 12px;
    line-height: 24px;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.why-business-wrap .button-icon a:hover {
  background: #1b1c1e;
  transition: 0.5s ease;
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.why-business-wrap .button-icon a span {
  margin-left: 15px;
}
.trusted-advise-wrapper.trusted-advise-inner .grid {
  margin: 0 auto;
}
.trusted-advise-wrapper.trusted-advise-inner .grid .post-list-box.no-image {
  background: #B79662;
}
.trusted-advise-wrapper.trusted-advise-inner .grid .post-list-box.no-image .blog-date {
  color: #fff;
}
.trusted-advise-wrapper.trusted-advise-inner .grid .post-list-box {
  background: #201E25;
  border-radius: 15px;
}
.trusted-advise-wrapper.trusted-advise-inner .grid .post-list-box img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.trusted-advise-wrapper.trusted-advise-inner .grid .post-list-box .blog-caption {
  padding: 35px;
  text-align: left;
}
.trusted-advise-wrapper.trusted-advise-inner .grid .post-list-box .blog-caption h2 {
  color: #fff;
  font-size: 22px;
  line-height: 26px;
  font-weight: 400;
  font-family: "Tenor Sans";
  margin-bottom: 20px;
}
.trusted-advise-wrapper.trusted-advise-inner .grid .post-list-box .blog-caption .readmore {
  border: 1px solid #fff;
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: 0.3s;
}
.trusted-advise-wrapper.trusted-advise-inner .grid .post-list-box .blog-caption .readmore img {
  width: 65%;
  height: 55%;
  transition: 0.3s;
}
.trusted-advise-wrapper.trusted-advise-inner .grid .post-list-box .blog-caption .readmore:hover img {
  padding-left: 15px;
}
.trusted-advise-wrapper.trusted-advise-inner .grid .post-list-box .blog-caption .blogger-box {
  display: flex;
  font-family: "Tenor Sans";
  margin-bottom: 10px;
  align-items: baseline;
  justify-content: flex-start;
}
@media (max-width: 575.98px) {
  .trusted-advise-wrapper.trusted-advise-inner .grid .post-list-box .blog-caption .blogger-box {
    display: block;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .grid .post-list-box .blog-caption .blogger-box h4 {
  color: #201E25;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  font-family: "Poppins";
  margin-right: 15px;
  background: #fff;
  border-radius: 15px 0px 15px 0px;
  padding: 5px 20px;
  transition: 0.5s;
}
.trusted-advise-wrapper.trusted-advise-inner .grid .post-list-box .blog-caption .blogger-box h4:hover {
  background: #C5A36E;
}
.trusted-advise-wrapper.trusted-advise-inner .grid .post-list-box .blog-caption .blogger-box h4 a {
  color: #201E25;
  transition: 0.5s;
  background: none;
  padding: 0;
}
.trusted-advise-wrapper.trusted-advise-inner .grid .post-list-box .blog-caption .blogger-box h4 a:hover {
  color: #fff;
}
.trusted-advise-wrapper.trusted-advise-inner .grid .post-list-box .blog-caption .blogger-box .blog-date {
  background: none;
  padding-left: 0;
}
.trusted-advise-wrapper.trusted-advise-inner .grid-item {
  width: 350px;
  height: auto;
  margin-bottom: 30px;
}
@media (max-width: 812px) {
  .trusted-advise-wrapper.trusted-advise-inner .grid-item {
    width: 250px;
    height: auto;
  }
}
@media (max-width: 575.98px) {
  .trusted-advise-wrapper.trusted-advise-inner .grid-item {
    width: 310px;
    height: auto;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.eligibility-wrap .modal-header {
  justify-content: right;
  border-bottom: 0;
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.eligibility-wrap .modal-dialog {
  max-width: 1100px;
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.eligibility-wrap .modal-dialog button.close {
  background-color: transparent;
  border: 0;
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.eligibility-wrap .modal-dialog .close {
  font-size: calc(1.275rem + 0.3vw);
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.eligibility-wrap .modal-body {
  text-align: center;
  padding: 65px 30px;
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.eligibility-wrap .modal-body h4 {
  font-family: "Tenor Sans";
  font-size: 34px;
  line-height: 44px;
  margin-bottom: 40px;
  color: #1E1E20;
  font-weight: 400;
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.eligibility-wrap .modal-body h4 span {
  font-family: "Tenor Sans";
  display: block;
  margin-bottom: 25px;
  color: #B79662;
}
@media (max-width: 1025px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.eligibility-wrap .modal-body h4 {
    font-size: 25px;
    line-height: 34px;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.eligibility-wrap h4 {
  text-transform: uppercase;
  margin-bottom: 45px;
  font-size: 52px;
  line-height: 70px;
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.eligibility-wrap h4 span {
  color: #B69766;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.eligibility-wrap h4 {
    font-size: 46px;
    line-height: 58px;
    margin-bottom: 35px;
  }
}
@media (max-width: 1025px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.eligibility-wrap h4 {
    margin-bottom: 35px;
    font-size: 33px;
    line-height: 45px;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.eligibility-wrap .legal-freelance-box p {
  margin-bottom: 85px;
}
@media (max-width: 1025px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.eligibility-wrap .legal-freelance-box p {
    margin-bottom: 55px;
  }
}
@media (max-width: 575.98px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.eligibility-wrap .legal-freelance-box p {
    margin-bottom: 22px;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.visa-process-wrap h4 {
  margin-bottom: 55px;
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.visa-process-wrap .icons-reason img {
  margin-bottom: 25px;
  width: 80px;
}
@media (max-width: 1600px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.visa-process-wrap .icons-reason img {
    width: 60px;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.visa-process-wrap .icons-reason p {
  margin-bottom: 0;
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.visa-process-wrap .icons-reason .side-line {
  /*border-left: 3px solid #F2F2F2;*/
  position: relative;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.visa-process-wrap .icons-reason .side-line {
    padding-left: 0;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .cards {
  padding: 10px 15px 10px 45px;
  margin-bottom: 45px;
  position: relative;
  overflow: hidden;
  min-height: 160px;
}
@media (max-width: 1025px) {
  .trusted-advise-wrapper.trusted-advise-inner .cards {
    padding: 10px 9px 10px 15px;
    margin-bottom: 15px;
  }
}
@media (max-width: 812px) {
  .trusted-advise-wrapper.trusted-advise-inner .cards {
    border-left: 3px solid #C09C3F;
    padding: 10px 9px 10px 25px;
    margin-bottom: 50px;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .cards::before {
  content: "";
  width: 3px;
  height: 100%;
  top: 0;
  left: 0;
  background: #f2f2f2;
  position: absolute;
  transition: 0.5s ease;
}
@media (max-width: 767.98px) {
  .trusted-advise-wrapper.trusted-advise-inner .cards::before {
    display: none;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .cards::after {
  content: "";
  width: 3px;
  height: 100%;
  bottom: -100%;
  left: 0;
  background: #B79662;
  position: absolute;
  transition: 0.5s ease;
}
@media (max-width: 1025px) {
  .trusted-advise-wrapper.trusted-advise-inner .cards::after {
    display: none;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .cards:hover::after {
  bottom: 0;
  transition: 0.5s ease;
}
@media (max-width: 767.98px) {
  .trusted-advise-wrapper.trusted-advise-inner .cards:hover::after {
    display: none;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.help-visa-wrap .web-button {
  background: url(../images/button-bg-brown.svg) no-repeat 0px 0px;
}
@media (max-width: 575.98px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.help-visa-wrap .web-button {
    padding: 21px 0px 36px 55px;
    line-height: 20px;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.help-visa-wrap .web-button:hover {
  background: url(../images/button-bg-hover.svg) no-repeat 0px 0px;
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.help-visa-wrap ul {
  margin-bottom: 50px;
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.help-visa-wrap ul li {
  background: url(../images/li-icon.svg) left no-repeat;
  font-size: 22px;
  line-height: 38px;
  color: #242326;
  padding-left: 40px;
  margin-bottom: 20px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.help-visa-wrap ul li {
    font-size: 20px;
    line-height: 36px;
  }
}
@media (max-width: 1025px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.help-visa-wrap ul li {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap {
  position: relative;
  text-align: left;
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap .legal-freelance-box {
  position: absolute;
  z-index: 9;
  left: 60px;
  top: 70px;
}
@media (max-width: 1025px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap .legal-freelance-box {
    top: 50px;
  }
}
@media (max-width: 991.98px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap .legal-freelance-box {
    top: 40px;
  }
}
@media (max-width: 991.98px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap .legal-freelance-box {
    position: initial;
    padding-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap .legal-freelance-box .icons-con span {
  display: block;
  color: #B79662;
  margin: 10px 0;
  font-family: "Poppins";
}
@media (max-width: 767.98px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap .legal-freelance-box .icons-con {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap .legal-freelance-box .icons-con img {
    margin: 0 auto;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap h3, .trusted-advise-wrapper-trusted-advise-inner-legal-freelance-wrap-h3 {
  margin: 0px;
  padding: 0px;
  font-family: "Poppins";
  font-size: 128px;
  color: rgba(230, 230, 230, 0.35);
  font-weight: 400;
	display: block
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap h3, .trusted-advise-wrapper-trusted-advise-inner-legal-freelance-wrap-h3 {
    font-size: 95px;
  }
}
@media (max-width: 1025px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap h3, .trusted-advise-wrapper-trusted-advise-inner-legal-freelance-wrap-h3 {
    font-size: 70px;
    line-height: 90px;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap p {
  font-family: "Poppins";
  color: #1E1E20;
  margin-bottom: 35px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap p {
    font-size: 16px;
    line-height: 26px;
    margin-right: 6%;
    margin-bottom: 25px;
  }
}
@media (max-width: 1025px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap p {
    font-size: 16px;
    line-height: 26px;
    margin-right: 0;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap h4 {
  margin: 0px;
  padding: 0px;
  font-family: "Tenor Sans";
  font-size: 76px;
  line-height: 78px;
  color: #1E1E20;
  margin-bottom: 25px;
  font-weight: normal;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap h4 {
    font-size: 45px;
    line-height: 50px;
  }
}
@media (max-width: 1025px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap h4 {
    font-size: 38px;
    line-height: 41px;
  }
}
@media (max-width: 767.98px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap h4 {
    font-size: 32px;
    line-height: 34px;
  }
}
.trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap h5 {
  margin: 0px;
  padding: 0px;
  font-family: "Tenor Sans";
  font-size: 46px;
  line-height: 63px;
  color: #242326;
  margin-bottom: 35px;
  font-weight: normal;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap h5 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 25px;
  }
}
@media (max-width: 1025px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap h5 {
    font-size: 26px;
    line-height: 33px;
  }
}
@media (max-width: 991.98px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap h5 {
    padding-top: 30px;
  }
}

/* SECTION VERTICAL TABS */
#experienceTab.nav-pills {
  position: relative;
  padding-bottom: 30px;
}
#experienceTab.nav-pills::after {
  content: "";
  width: 7px;
  background: #F1F1F1;
  right: 0;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  border-radius: 5px;
}
#experienceTab.nav-pills .nav-link {
  position: relative;
  font-size: 30px;
  line-height: normal;
  color: #F1F1F1;
  text-align: right;
  /*padding: 20px 1.5rem;*/
}
#experienceTab.nav-pills .nav-link.active {
  font-size: 60px;
  line-height: normal;
  color: #F1F1F1;
  font-weight: 400;
  font-family: "Poppins";
  background: none;
  padding: 0 14px 0px 0px;
  text-align: center;
}
@media (max-width: 1025px) {
  #experienceTab.nav-pills .nav-link.active {
    font-size: 40px;
  }
}
#experienceTab.nav-pills .nav-link.active::after {
  content: "";
  width: 7px;
  background: #B69766;
  right: 0;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  border-radius: 5px;
  z-index: 99;
}

#experienceTabContent {
  padding: 25px 0 50px;
}
#experienceTabContent .tab-pane .choices input[type=radio] {
  width: 0;
}
@media (max-width: 575.98px) {
  #experienceTabContent .tab-pane .choices label {
    padding-top: 2px !important;
    width: 110px;
    height: 35px;
    margin-right: 5px;
    line-height: normal;
    font-size: 18px !important;
  }
}
#experienceTabContent .tab-pane .ques-submit {
  margin-top: 25px;
}
#experienceTabContent .tab-pane .ques-submit .web-button {
  margin-top: 15px;
  border: 0 !important;
  height: auto !important;
  line-height: 60px;
}
#experienceTabContent .tab-pane .ques-submit .web-button:hover {
  background: url(../images/button-bg-hover.svg) no-repeat 0px 0px;
  color: #B79662;
}
#experienceTabContent .tab-pane p {
  font-size: 38px;
  line-height: 48px;
  font-family: "Tenor Sans" !important;
  margin-bottom: 41px;
  min-height: 115px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  #experienceTabContent .tab-pane p {
    font-size: 28px;
    line-height: 35px;
  }
}
@media (max-width: 1025px) {
  #experienceTabContent .tab-pane p {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 575.98px) {
  #experienceTabContent .tab-pane p {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
  }
}
#experienceTabContent .tab-pane a {
  border: 3px solid #B79662;
  font-family: "Poppins";
  letter-spacing: 2.4px;
  color: #B79662;
  border-radius: 25px;
  width: 160px;
  height: 55px;
  display: inline-block;
  text-align: center;
  font-size: 24px;
  padding-top: 7px;
  margin-right: 20px;
  transition: 0.2s;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  #experienceTabContent .tab-pane a {
    font-size: 20px;
    padding-top: 5px;
    width: 130px;
    height: 45px;
  }
}
@media (max-width: 1025px) {
  #experienceTabContent .tab-pane a {
    font-size: 18px;
    padding-top: 5px;
    width: 130px;
    height: 45px;
  }
}
@media (max-width: 575.98px) {
  #experienceTabContent .tab-pane a {
    padding-top: 2px;
    width: 110px;
    height: 35px;
    margin-right: 5px;
  }
}
#experienceTabContent .tab-pane a:hover {
  background: #B79662;
  color: #fff;
}

/*blog styling*/
.entry-header {
  padding: 24px 0px !important;
}

.entry-header .entry-title {
  font-family: "Tenor Sans";
  font-size: 50px;
  margin: 0;
  padding: 0 0 30px;
  font-weight: bold;
  color: #333333;
  text-transform: uppercase;
  line-height: 58px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .entry-header .entry-title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 1025px) {
  .entry-header .entry-title {
    font-size: 30px;
    line-height: 40px;
  }
}

.blogger-box {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #CBCBCB;
  padding-bottom: 26px;
  margin-bottom: 30px;
}
.blogger-box h4 {
  line-height: 24px;
  margin-bottom: 0;
  font-size: 16px;
  color: #afafaf;
  font-weight: normal;
}
.blogger-box h4 span {
  padding-right: 45px;
  color: #F47F03;
  margin-bottom: 10px;
  display: inline-block;
}
@media (max-width: 575.98px) {
  .blogger-box h4 span {
    padding-right: 117px;
    width: 70%;
  }
}
.blogger-box h4 a {
  color: #F47F03;
  background: #FFECD6 0% 0% no-repeat padding-box;
  border-radius: 12px;
  padding: 1px 14px;
}
.blogger-box .blog-date {
  color: #fff;
  font-size: 16px;
  /* color: #afafaf;*/
  font-weight: normal;
  background: url(../images/time-icon.svg) left 5px no-repeat;
  padding-left: 25px;
  font-family: var(--heading--font-family);
}
@media (max-width: 575.98px) {
  .blogger-box .blog-date {
    margin-top: 10px;
  }
}
@media (max-width: 575.98px) {
  .blogger-box {
    display: block;
  }
}

.entry-content {
  color: #737373;
}
.entry-content a {
  color: #f47d03;
  transition: 0.5s;
  text-decoration: none;
  outline: none;
}
.entry-content a:hover {
  color: #737373;
  outline: none;
}
.entry-content p {
  font-size: 18px;
  color: #666666;
  margin: 0 0 24px;
  line-height: 28px !important;
  font-family: "Poppins";
  font-weight: normal;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .entry-content p {
    font-size: 16px;
    line-height: 24px !important;
  }
}

.entry-content img,
.comment-content img,
.widget img {
  max-width: 100%;
}

.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
.mu_register ul {
  margin: 0 0 24px;
  margin: 0 0 1.714285714rem;
  line-height: 1.714285714;
}

.entry-content ul,
.comment-content ul,
.mu_register ul {
  list-style: disc outside;
}

.entry-content ul,
.entry-content ol {
  padding-left: 0;
}

.entry-content li,
.comment-content li,
.mu_register li {
  margin: 0 0 0 20px;
  font-size: 16px;
  list-style: disc outside;
  color: #737373;
}

.entry-content h1,
.comment-content h1,
.entry-content h2,
.comment-content h2,
.entry-content h3,
.comment-content h3,
.entry-content h4,
.comment-content h4,
.entry-content h5,
.comment-content h5,
.entry-content h6,
.comment-content h6 {
  margin: 24px 0;
  font-size: 1.285714286rem;
  line-height: 1.6;
}

.entry-content h2,
.comment-content h2,
.mu_register h2 {
  font-size: 20px;
  line-height: 1.6;
}

.wp-block-image {
  margin: 0 0 1em;
}

.sc_card {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  background: #fff;
  margin: 2em auto;
  width: 100%;
  overflow: hidden;
  padding: 1em;
  box-sizing: border-box;
}

.sc_card h1,
.sc_card h2,
.sc_card h3,
.sc_card h4,
.sc_card h5,
.sc_card h6 {
  font-size: 1em;
  line-height: 1.2em;
  margin: 0 0 1em;
  font-weight: 700;
}

small {
  font-size: smaller;
}

.yarpp-related {
  border-bottom: 1px solid #CBCBCB;
}

.gmi_comment_count,
.comments-title {
  font-weight: 700;
  font-size: 20px !important;
  color: #737373;
}

#respond {
  margin-top: 48px;
  margin-top: 3.428571429rem;
  border-bottom: 1px solid #BCBCBC;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
#respond h3 #reply-title {
  font-size: 26px;
  color: #4E4E4E;
  font-weight: 600;
}
#respond form label {
  display: block;
  line-height: 1.714285714;
  font-size: 16px;
  color: #737373;
}
#respond form label .required {
  color: red;
}
#respond form textarea {
  height: 143px;
}
#respond form p.form-submit {
  margin-top: 40px;
}
#respond form input[type=email] {
  border: 1px solid #CBCBCB;
}
#respond .comment-form .comment-form-author,
#respond .comment-form .comment-form-email {
  flex-basis: 100%;
  margin-right: 0;
}
#respond .comment-form p.comment-form-cookies-consent {
  display: flex;
  align-items: center;
}
#respond .comment-form p.comment-form-cookies-consent input {
  margin-right: 0px;
  border: 1px solid #ccc;
  width: 20px;
  height: 20px;
}
#respond .comment-form p.comment-form-cookies-consent input[type=checkbox]:focus {
  outline: none;
}
#respond .comment-form p.comment-form-cookies-consent label {
  margin-bottom: 0;
}
#respond .comment-form .logged-in-as {
  padding-bottom: 15px;
}

#respond form input[type=text],
#respond form textarea {
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.714285714;
  padding: 10px;
  padding: 0.714285714rem;
  width: 100%;
  border: 1px solid #CBCBCB;
  border-radius: 4px;
  padding: 15px 15px;
  margin-bottom: 0;
  /* resize: none; */
}

.form-submit input[type=submit] {
  background: #BC0C0C !important;
  border-radius: 0;
  border: none;
  color: #FFF !important;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 20px 15px;
  width: 275px;
  transition: 0.5s all;
}

.form-submit input[type=submit]:hover {
  background: #C5A36E !important;
}

.site-content nav {
  clear: both;
  line-height: 2;
  overflow: hidden;
  padding-bottom: 0px;
  position: inherit;
  background: none;
  height: auto;
}
.site-content nav .nav-single {
  margin-bottom: 30px;
}
.site-content .logged-in-as a:hover {
  color: #f47d03;
}

.assistive-text,
.site .screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
}

.nav-previous .post-title {
  margin: 0 !important;
}

.nav-previous,
.nav-next {
  position: relative;
}
.nav-previous a,
.nav-next a {
  color: #4E4E4E;
  font-size: 18px;
  margin-bottom: 5px;
  display: block;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Poppins";
}
.nav-previous a:hover,
.nav-next a:hover {
  color: #b79662;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .nav-previous a,
.nav-next a {
    font-size: 16px;
  }
}
@media (max-width: 1025px) {
  .nav-previous a,
.nav-next a {
    font-size: 16px;
  }
}

.nav-previous {
  padding-left: 25px;
}

.nav-next {
  padding-right: 25px;
}

.nav-previous,
.previous-image {
  float: left;
}

.nav-next,
.next-image {
  float: right;
  text-align: right;
}

.nav-previous .meta-nav {
  background: url(../images/chevron-left.svg) left center no-repeat;
  display: block;
  width: 10px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 7px;
}
.nav-previous .meta-nav svg {
  display: none;
}

.nav-next .meta-nav {
  background: url(../images/chevron-up.svg) right center no-repeat;
  display: block;
  width: 10px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 3px;
}

.entry-footer {
  display: none !important;
}

.comments-area {
  border-top: 1px solid #CBCBCB;
  margin-top: 15px;
  padding: 45px 0 0 0;
}
.comments-area .comment-author .fn {
  font-weight: bold !important;
  color: #333333;
  font-size: 18px !important;
  padding-left: 70px !important;
}
.comments-area article {
  margin: 24px 0;
  margin: 1.714285714rem 0;
  /*border-bottom: 1px solid #BCBCBC;*/
  padding-bottom: 20px;
}

.comments-area .comment-list > li {
  border-bottom: 1px solid #BCBCBC;
}

.comments-area.show-avatars .comment-metadata {
  padding: 8px 0 9px 70px !important;
}

.comment-content {
  padding-left: 70px;
  margin: 0px 0px 10px !important;
}
.comment-content p {
  margin: 0 0 0;
  line-height: 1.6;
  font-size: 18px;
  color: #5e5e5e;
}
.comment-content a {
  color: #F47F03;
}
.comment-content a:hover {
  color: #737373;
  outline: none;
}

.page-link:hover {
  color: #B79662 !important;
}

/*.hamburger-box {
    width: 20px !important;
}*/
.wprmenu_bar #custom_menu_icon.hamburger {
  right: 7px !important;
}

.footer-wrapper .footer-logo {
  margin-bottom: 5%;
}

.comments-area article .comment-metadata time {
  line-height: normal;
  text-decoration: none;
  font-size: 18px;
  color: #5e5e5e;
  display: block;
}

.comment-body .reply {
  padding-left: 70px;
  color: #F47F03;
}
.comment-body .reply a.comment-reply-link {
  position: relative;
  padding-left: 16px;
  color: #F47F03;
}
.comment-body .reply a.comment-reply-link:hover {
  color: #737373;
  outline: none;
}
.comment-body .reply a.comment-reply-link:hover::before {
  filter: invert(48%) sepia(19%) saturate(2417%) hue-rotate(216deg) brightness(142%) contrast(44%);
}
.comment-body .reply a.comment-reply-link::before {
  content: "";
  width: 16px;
  height: 17px;
  position: absolute;
  left: 0;
  top: 2px;
  background: url(../images/reply-icon.svg) no-repeat;
}
.comment-body .required {
  color: red;
}

.comment-respond h2#reply-title {
  font-size: 26px;
  color: #4E4E4E;
  font-weight: 400;
  font-family: "Poppins";
  margin-bottom: 15px;
}

.comment-notes .required {
  color: red;
}

#respond form input[type=text]:focus-visible,
#respond form textarea:focus-visible {
  outline: #4E4E4E auto 5px;
}

#respond form input[type=email]:focus {
  outline: #4E4E4E auto 5px;
}

.newtest {
  padding: 24px calc(var(--bs-gutter-x) * 0.5) 24px 30px !important;
}
@media (max-width: 767.98px) {
  .newtest {
    padding: 24px calc(var(--bs-gutter-x) * 0.5) 24px 15px !important;
  }
}
@media (max-width: 575.98px) {
  .newtest {
    padding: 24px calc(var(--bs-gutter-x) * 0.5) 24px 15px !important;
  }
}
.newtest .widget {
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
      hyphens: auto;
  margin-bottom: 25px;
  border: 1px solid #CBCBCB;
  border-radius: 6px;
  padding: 35px;
}
.newtest .widget h3 {
  padding: 0;
  margin: 0 0 15px 0;
  font-size: 26px;
  line-height: normal;
  font-weight: 600;
  color: #333333;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .newtest .widget h3 {
    font-size: 24px !important;
  }
}
@media (max-width: 991.98px) {
  .newtest .widget h3 {
    font-size: 20px !important;
  }
}
.newtest .tptn_posts_widget a {
  width: 90px;
  height: 70px;
  text-decoration: none;
}
.newtest .tptn_posts_widget img.tptn_thumbnail {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none;
  margin-bottom: 4px;
}
.newtest .tptn_posts_widget2 img.tptn_thumbnail {
  width: 90px !important;
  height: 70px !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.newtest .tptn_posts_widget2 img.tptn_thumbnail {
  display: block;
  float: left;
  clear: left;
  margin-right: 10px !important;
  padding: 3px !important;
  border: 1px #ccc solid;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  border-radius: 7px;
}
.newtest .tptn_posts_widget ul li:after,
.newtest .tptn_posts_widget ul:after {
  content: "";
  display: table;
  clear: both;
}
.newtest ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.newtest ul li {
  padding: 10px 0px 10px 0px;
  margin: 0px;
  border-bottom: 1px solid #CBCBCB;
}
.newtest ul li a {
  color: #4E4E4E !important;
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  text-decoration: none;
  font-family: "Poppins";
}
.newtest ul li a:hover {
  color: #f47d03 !important;
}
.newtest .widget p,
.newtest .widget li,
.newtest .widget .textwidget {
  font-size: 13px;
  font-size: 0.928571429rem;
  line-height: 1.846153846;
}

.tptn_counter {
  display: none;
}

.breadcrumbs {
  display: flex;
  font-size: 14px;
  color: #A2A2A2;
  margin-top: 25px;
  line-height: normal;
}
.breadcrumbs a {
  font-size: 14px;
  line-height: 41px;
  color: #f47d03;
  transition: 0.5s;
  text-decoration: none;
  outline: none;
}
.breadcrumbs a:hover {
  color: #A2A2A2;
}
.breadcrumbs p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 14px;
  color: #A2A2A2;
}
.breadcrumbs span .sep {
  margin: 0 5px;
  display: inline-block;
  line-height: 41px;
}

.legal-freelance-wrap.visa-process-wrap {
  border-bottom: 8px solid #B79662;
}

input.wpcf7-form-control.has-spinner.wpcf7-submit:focus {
  outline: none !important;
}

#emc-submit.ready-show {
  position: relative;
  left: -40px;
  top: 10px;
}

.legal-heading h1 {
  font-size: 130px !important;
  line-height: 115px !important;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .legal-heading h1 {
    font-size: 90px !important;
    line-height: 85px !important;
  }
}
@media (max-width: 1100px) {
  .legal-heading h1 {
    font-size: 60px !important;
    line-height: 70px !important;
  }
}
@media (max-width: 991.98px) {
  .legal-heading h1 {
    font-size: 44px !important;
    line-height: 54px !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .contact-wraper .col-md-6.pe-5 {
    width: 100% !important;
  }
  .contact-wraper .col-md-6.ps-md-5.ps-4 {
    padding-left: 15px !important;
    margin-top: 5%;
    width: 100%;
  }
}
.d-block {
  width: 100%;
}

@media (min-width: 1000px) and (max-width: 1250px) {
  .chairman-message {
    height: 770px;
  }
  .d-lg-block {
    display: block !important;
    bottom: 0;
    position: initial;
    z-index: -1;
  }
}
@media (max-width: 767.98px) {
  .visa-banner-heading {
    margin-top: 90% !important;
  }
}

.location-map {
  margin-bottom: 5%;
  margin-top: 5%;
}

.cnt-details .align-items-start {
  align-items: flex-start !important;
}

@media (min-width: 815px) and (max-width: 950px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap {
    min-height: 800px;
  }
  .legal-freelance-wrap.help-visa-wrap img.d-lg-none.d-block {
    position: absolute;
    bottom: 0;
  }
}
.crosslinks-wraper img {
  border-radius: 47px !important;
}

@media (max-width: 991.98px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.why-business-wrap .button-icon a img {
    padding-right: 0px;
  }
}

@media (max-width: 767.98px) {
  .col-md-6.ps-md-4.ps-4.aos-init.aos-animate p br {
    display: block !important;
  }
}

.legal-freelance-box .col-md-4.col-6 img {
  width: 38px;
  height: 35px;
}

.col-md-6.ps-md-5.ps-4.contact.aos-init.aos-animate {
  padding-left: 100px !important;
}
@media (max-width: 1025px) {
  .col-md-6.ps-md-5.ps-4.contact.aos-init.aos-animate {
    padding-left: 15px !important;
  }
}

.visa-process-wrap .legal-freelance-box {
  top: 100px !important;
}

.shooting-line {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.shooting-line .top-line {
  margin: auto;
  display: table;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .shooting-line .top-line img {
    height: 150px;
    /*display: table !important;*/
  }
}

p {
  font-family: "Poppins" !important;
  font-weight: 400;
}

.overlay-grad {
  position: relative;
}
.overlay-grad::after {
  background: url(../images/message-pattern.png) bottom no-repeat;
  position: absolute;
  z-index: 1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: -354px;
  opacity: 0.4;
}
@media (max-width: 991.98px) {
  .overlay-grad::after {
    background: url(../images/mobile-commit.png) no-repeat;
    width: 660px;
    top: -510px;
    background-size: contain;
    bottom: auto;
    transform: scale(1.2);
  }
}

.margin-to-right {
  margin-left: auto;
  position: relative;
}

.black-gradient {
  background-color: rgba(0, 0, 0, 0.95);
  background-image: linear-gradient(#0F0F10, #424243);
}
@media (max-width: 991.98px) {
  .black-gradient {
    margin-top: -1px;
  }
}
.black-gradient .accordion-body p {
  font-size: 18px;
  margin-bottom: 0;
}
@media (max-width: 1600px) {
  .black-gradient .accordion-body p {
    font-size: 14px;
  }
}
.black-gradient .accordion-item {
  background-color: transparent;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: solid 2px #C5A36E;
  border-radius: 0;
}
@media (max-width: 1600px) {
  .black-gradient .accordion-item {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 991.98px) {
  .black-gradient .accordion-item {
    margin-left: 65px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.black-gradient .accordion-button:not(.collapsed) {
  background-color: transparent;
}
.black-gradient .accordion-button {
  background-color: transparent;
  color: #fff;
  padding: 0;
}
.black-gradient .accordion-body {
  padding-left: 0;
}
@media (max-width: 991.98px) {
  .black-gradient .accordion-body {
    padding-bottom: 0;
  }
}
@media (max-width: 991.98px) {
  .black-gradient .accordion-body p {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 0;
    padding-right: 15px;
  }
}
.black-gradient h2.commit {
  color: #B69562;
  font-size: 76px;
  line-height: 101px;
  font-family: "Tenor Sans";
  font-weight: 400;
}
@media (max-width: 1600px) {
  .black-gradient h2.commit {
    font-size: 56px;
    line-height: 65px;
  }
}
@media (max-width: 991.98px) {
  .black-gradient h2.commit {
    font-weight: 400;
    font-size: 32px;
    line-height: 34px;
    padding-top: 0;
    padding-bottom: 20px;
  }
}
.black-gradient p {
  font-weight: 400;
  line-height: 38px;
  color: #fff;
  opacity: 0.78;
}
@media (max-width: 1600px) {
  .black-gradient p {
    line-height: 30px;
  }
}
@media (max-width: 991.98px) {
  .black-gradient p {
    font-size: 16px;
    line-height: 25px;
  }
}

.left-margin {
  position: absolute;
  left: -102px;
  width: 70px;
}
@media (max-width: 1600px) {
  .left-margin {
    left: -90px;
    max-width: 57px;
  }
}
@media (max-width: 991.98px) {
  .left-margin {
    left: -75px;
  }
}

.accordion-golden {
  z-index: 99;
  position: relative;
  padding-bottom: 130px;
}
@media (max-width: 991.98px) {
  .accordion-golden {
    padding-bottom: 10px;
  }
}
.accordion-golden .accordion-button {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 20px;
  line-height: 36px;
}
@media (min-width: 1800px) {
  .accordion-golden .accordion-button {
    font-size: 26px;
    line-height: 46px;
  }
}
@media (max-width: 991.98px) {
  .accordion-golden .accordion-button {
    font-size: 16px;
  }
}
.accordion-golden .accordion-button::after {
  background-image: url(../images/plus-icon-commitment.svg);
  width: 50px;
  height: 50px;
  background-size: auto;
  width: 50px;
  height: 50px;
}
@media (max-width: 1600px) {
  .accordion-golden .accordion-button::after {
    width: 38px;
    height: 40px;
    background-size: contain;
  }
}
@media (max-width: 991.98px) {
  .accordion-golden .accordion-button::after {
    width: 28px;
    height: 30px;
    background-size: contain;
  }
}
.accordion-golden .accordion-button:not(.collapsed)::after {
  background-image: url(../images/minus-icon-commitment.svg);
  width: 50px;
  height: 50px;
  background-size: auto;
}
@media (max-width: 1600px) {
  .accordion-golden .accordion-button:not(.collapsed)::after {
    width: 38px;
    height: 40px;
    background-size: contain;
  }
}
@media (max-width: 991.98px) {
  .accordion-golden .accordion-button:not(.collapsed)::after {
    width: 28px;
    height: 30px;
    background-size: contain;
  }
}

.golden-content {
  position: relative;
  z-index: 1;
}
.golden-content h2 {
  font-family: "Tenor Sans";
  font-size: 76px;
  font-weight: 400;
  line-height: 89px;
  color: #1F1F22;
}
@media (max-width: 1600px) {
  .golden-content h2 {
    font-size: 56px;
    line-height: 70px;
  }
}
@media (max-width: 991.98px) {
  .golden-content h2 {
    margin-bottom: 30px;
  }
}
@media (max-width: 991.98px) {
  .golden-content .client-title {
    font-size: 32px;
    line-height: 32px;
  }
}
@media (max-width: 991.98px) {
  .golden-content p {
    font-size: 16px;
  }
}

.white-client-accordion {
  position: relative;
  z-index: 1;
  padding-bottom: 150px;
}
@media (max-width: 991.98px) {
  .white-client-accordion {
    padding-bottom: 10px;
  }
}
.white-client-accordion .accordion-item {
  border: none;
  border-bottom: solid 2px #D4D4D4;
  margin-left: 75px;
  background-color: transparent;
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 0;
}
@media (max-width: 1600px) {
  .white-client-accordion .accordion-item {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 991.98px) {
  .white-client-accordion .accordion-item {
    margin-left: 66px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.white-client-accordion .accordion-item .accordion-body {
  padding-left: 0;
}
@media (max-width: 991.98px) {
  .white-client-accordion .accordion-item .accordion-body {
    padding-left: 0;
    padding-bottom: 0;
  }
  .white-client-accordion .accordion-item .accordion-body p {
    margin-bottom: 0;
    padding-right: 15px;
  }
}
.white-client-accordion .accordion-item p {
  padding-right: 20px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .white-client-accordion .accordion-item p {
    font-size: 14px;
  }
}
.white-client-accordion .accordion-button {
  background-color: transparent;
  font-weight: 500;
  font-family: "Poppins";
  font-size: 26px;
  line-height: 46px;
  padding-right: 0;
  padding: 0;
}
@media (max-width: 1600px) {
  .white-client-accordion .accordion-button {
    font-size: 20px;
  }
}
@media (max-width: 991.98px) {
  .white-client-accordion .accordion-button {
    font-size: 16px;
  }
}
.white-client-accordion .accordion-button:not(.collapsed) {
  color: #000000;
  background-color: transparent;
  box-shadow: none;
}
.white-client-accordion .accordion-button::after {
  background-image: url(../images/golden-plus-icon-commitment.svg);
  width: 50px;
  height: 50px;
  background-size: auto;
  width: 50px;
  height: 50px;
}
@media (max-width: 1600px) {
  .white-client-accordion .accordion-button::after {
    width: 38px;
    height: 40px;
    background-size: contain;
  }
}
@media (max-width: 991.98px) {
  .white-client-accordion .accordion-button::after {
    width: 28px;
    height: 30px;
    background-size: contain;
  }
}
.white-client-accordion .accordion-button:not(.collapsed)::after {
  background-image: url(../images/golden-minus-icon-commitment.svg);
  width: 50px;
  height: 50px;
  background-size: auto;
}
@media (max-width: 1600px) {
  .white-client-accordion .accordion-button:not(.collapsed)::after {
    width: 38px;
    height: 40px;
    background-size: contain;
  }
}
@media (max-width: 991.98px) {
  .white-client-accordion .accordion-button:not(.collapsed)::after {
    width: 28px;
    height: 30px;
    background-size: contain;
  }
}

.golden-border {
  border-bottom: 8px solid #B79662;
  margin-bottom: 100px;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .golden-border {
    margin-bottom: 80px;
  }
}
@media (max-width: 991.98px) {
  .golden-border {
    padding-top: 80px;
    margin-bottom: 70px;
  }
}

@media (max-width: 991.98px) {
  .bottom-commit {
    position: static !important;
  }
}
.bottom-commit img {
  max-width: 1340px;
  margin-left: auto;
}
@media (min-width: 1800px) {
  .bottom-commit img {
    max-width: 1563px;
  }
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .bottom-commit img {
    max-width: 1000px;
  }
}
@media (max-width: 991.98px) {
  .bottom-commit img {
    max-width: 100%;
    margin-left: 0;
  }
}

.commitment-banner h1 {
  font-family: "Kiona";
  text-transform: uppercase;
  text-align: center;
  font-size: 90px;
  font-weight: 400;
  color: #FFF;
  position: absolute;
  left: 0;
  right: 0;
  top: 27%;
  line-height: 100px;
}
@media (min-width: 1800px) {
  .commitment-banner h1 {
    top: 23%;
    font-size: 130px;
    line-height: 115px;
  }
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .commitment-banner h1 {
    top: 20%;
  }
}
@media (max-width: 991.98px) {
  .commitment-banner h1 {
    font-size: 40px;
    line-height: 56px;
    top: 30%;
  }
}

.drop-down-arrow-commit {
  position: absolute;
  bottom: -1px;
  width: 100%;
}
.drop-down-arrow-commit img {
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .drop-down-arrow-commit img {
    max-width: 168px;
  }
}

@media (max-width: 991.98px) {
  .position-in-responsive {
    position: static !important;
    width: 100%;
  }
}

button:focus, button:focus:not(:focus-visible) {
  outline: none !important;
  box-shadow: none;
}

.commitemnts-to .container {
  padding-left: 30px;
  padding-right: 30px;
  /*margin-bottom: 30px;*/
}

.ball-structure-wrap {
  position: relative;
  z-index: 99;
  padding-bottom: 80px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .ball-structure-wrap {
    padding-bottom: 50px;
  }
}

.image-ball-culture {
  width: 660px;
  margin: 200px auto;
}
@media (max-width: 1600px) {
  .image-ball-culture {
    width: 450px;
  }
}

.cult-image {
  cursor: pointer;
  width: 132px;
}
@media (max-width: 1600px) {
  .cult-image {
    width: 80px;
  }
}
.cult-image img {
  max-width: 132px;
}
@media (max-width: 1600px) {
  .cult-image img {
    max-width: 80px;
  }
}

.cult-title h4 {
  color: #fff;
  font-family: "Poppins";
  font-size: 26px;
  line-height: 38px;
  font-weight: 400;
  width: 230px;
  padding-left: 20px;
  cursor: pointer;
}
@media (max-width: 1600px) {
  .cult-title h4 {
    font-size: 18px;
    line-height: 23px;
    bottom: 97px;
    right: -212px;
  }
}

.cult-content {
  width: 450px;
  background-color: #B79662;
  color: #fff;
  position: absolute;
  border-radius: 15px;
  padding: 30px;
  bottom: -220px;
  z-index: 1;
  /*left: -20px;*/
  left: 0;
  opacity: 0;
  z-index: -1;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1600px) {
  .cult-content {
    width: 340px;
    bottom: -192px;
  }
}
.cult-content:after {
  position: absolute;
  top: -10px;
  /* left: 19%;*/
  left: 13%;
  margin-left: -10px;
  content: "";
  display: block;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #B79662;
}
.cult-content p {
  line-height: 34px;
}
@media (max-width: 1600px) {
  .cult-content p {
    line-height: 22px;
    font-size: 17px;
    font-weight: 300;
  }
}

.cult-wrapper {
  width: 306px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
@media (max-width: 1600px) {
  .cult-wrapper {
    width: 265px;
  }
}

.cult-1 {
  top: -95px;
  left: 271px;
}
@media (max-width: 1600px) {
  .cult-1 {
    top: -46px;
    left: 193px;
  }
}
.cult-1 h4 {
  text-align: left;
}
.cult-1 .cult-image img {
  width: 132px;
  top: 0;
  left: 0;
  right: 0;
}
.cult-1 .cult-content {
  bottom: -175px !important;
}

.cult-4 {
  bottom: -95px;
  left: 271px;
}
@media (max-width: 1600px) {
  .cult-4 {
    bottom: -54px;
    left: 193px;
  }
}
.cult-4 h4 {
  text-align: left;
}
.cult-4 .cult-image img {
  width: 240px;
  top: 0;
  left: 0;
  right: 0;
}
.cult-4 .cult-content {
  bottom: -175px !important;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .cult-4 .cult-content {
    bottom: -150px !important;
  }
}

.cult-2 {
  top: 112px;
  right: -212px;
}
@media (max-width: 1600px) {
  .cult-2 {
    top: 78px;
    right: -191px;
  }
}
.cult-2 h4 {
  text-align: left;
}
.cult-2 .cult-image img {
  width: 240px;
  top: 0;
  left: 0;
  right: 0;
}
.cult-2 .cult-content {
  bottom: -175px !important;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .cult-2 .cult-content {
    bottom: -150px !important;
  }
}

.cult-6 {
  top: 112px;
  left: -212px;
}
@media (max-width: 1600px) {
  .cult-6 {
    top: 84px;
    left: -210px;
  }
}
.cult-6 h4 {
  text-align: right;
  padding-left: 0;
  padding-right: 20px;
  width: 180px;
}
.cult-6 .cult-wrapper {
  flex-direction: row-reverse;
}
.cult-6 .cult-content {
  left: -154px;
}
@media (max-width: 1600px) {
  .cult-6 .cult-content {
    /*left: -50px;*/
    left: -78px;
  }
}
.cult-6 .cult-content::after {
  /* left: 80%;*/
  left: 89%;
}
.cult-6 .cult-image img {
  top: 0;
  left: 0;
  right: 0;
}

.cult-3 {
  bottom: 112px;
  right: -212px;
}
@media (max-width: 1600px) {
  .cult-3 {
    bottom: 97px;
    right: -212px;
  }
}
.cult-3 h4 {
  text-align: left;
}
.cult-3 .cult-wrapper {
  align-items: center;
}
.cult-3 .cult-image img {
  width: 240px;
  top: 0;
  left: 0;
  right: 0;
}

.cult-5 {
  bottom: 112px;
  left: -212px;
}
@media (max-width: 1600px) {
  .cult-5 {
    bottom: 67px;
    left: -199px;
  }
}
.cult-5 h4 {
  text-align: right;
  padding-left: 0;
  padding-right: 20px;
}
.cult-5 .cult-wrapper {
  flex-direction: row-reverse;
}
.cult-5 .cult-content {
  left: -145px;
  bottom: -175px !important;
}
@media (max-width: 1600px) {
  .cult-5 .cult-content {
    /* left:-50px;*/
    left: -78px;
  }
}
.cult-5 .cult-content::after {
  /*left: 80%;*/
  left: 89%;
}
.cult-5 .cult-image img {
  width: 240px;
  top: 0;
  left: 0;
  right: 0;
}

.cult-wrapper:hover .cult-content {
  opacity: 1;
  bottom: -210px;
  transition: 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 1600px) {
  .cult-wrapper:hover .cult-content {
    bottom: -200px;
  }
}

.the-root {
  padding-top: 200px;
}
@media (max-width: 1600px) {
  .the-root {
    padding-top: 160px;
  }
}
@media (max-width: 991.98px) {
  .the-root {
    padding-top: 70px;
  }
}
.the-root h2 {
  font-family: "Tenor Sans";
  font-size: 78px;
  line-height: 104px;
  color: #1E1E20;
  font-weight: 400;
}
@media (max-width: 1600px) {
  .the-root h2 {
    font-size: 58px;
    line-height: 75px;
  }
}
@media (max-width: 1100px) {
  .the-root h2 {
    font-size: 41px;
    line-height: 48px;
  }
}
@media (max-width: 767.98px) {
  .the-root h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
.the-root p {
  margin-top: 40px;
}
@media (max-width: 991.98px) {
  .the-root p {
    font-size: 16px;
  }
}

.culture-banner h1 {
  /*font-family: "Kiona";*/
  font-family: 'Trakya-Sans-300';
  text-transform: capitalize;
  text-align: center;
  font-size: 130px;
  font-weight: 400;
  color: #FFF;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  line-height: 115px;
}
@media (max-width: 1600px) {
  .culture-banner h1 {
    font-size: 90px;
  }
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .culture-banner h1 {
    top: 25%;
  }
}
@media (max-width: 991.98px) {
  .culture-banner h1 {
    font-size: 40px;
    top: 30%;
  }
}

.cultures-for h4.commit {
  font-family: "Tenor Sans";
  font-size: 78px;
  line-height: 104px;
  color: #B79662;
  font-weight: 400;
}
@media (max-width: 1600px) {
  .cultures-for h4.commit {
    font-size: 58px;
    line-height: 60px;
  }
}
@media (max-width: 991.98px) {
  .cultures-for h4.commit {
    font-size: 35px;
    line-height: 50px;
    margin-top: 15px;
    margin-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .cultures-for h4.commit {
    font-size: 32px;
    line-height: 37px;
  }
}
.cultures-for h4.commit span {
  color: #fff;
}

.cultures-for p {
  opacity: 0.9 !important;
}
.cultures-for .accordion-button {
  color: #B79662;
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .cultures-for .accordion-button {
    font-size: 18px;
    line-height: 25px;
  }
}
@media (max-width: 991.98px) {
  .cultures-for .accordion-item {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}

.cultures-for .accordion-golden .accordion-button:not(.collapsed)::after {
  background-image: url(../images/down-arrow.svg);
  background-size: 18px;
  background-position: right;
}
.cultures-for .accordion-golden .accordion-button::after {
  background-image: url(../images/down-arrow.svg);
  background-size: 18px;
  background-position: left;
}

@media (max-width: 1600px) {
  .block-three-book.roots-of-text {
    padding-bottom: 80px;
  }
}
@media (max-width: 991.98px) {
  .block-three-book.roots-of-text {
    padding-bottom: 20px;
  }
}

@media (max-width: 1600px) {
  .commit-shoot .top-line {
    top: -240px;
  }
}
@media (max-width: 1025px) {
  .commit-shoot .top-line {
    top: -90px;
  }
}
@media (max-width: 991.98px) {
  .commit-shoot .top-line {
    top: -150px;
  }
}

.goldent-parag {
  color: #1F1F22;
  margin-top: 10px;
}
@media (max-width: 991.98px) {
  .goldent-parag {
    margin-top: 0;
  }
}

@media (max-width: 1600px) {
  .new-white-acc .accordion-item p {
    font-size: 14px;
  }
}
@media (max-width: 991.98px) {
  .new-white-acc .accordion-item p {
    color: #19191A;
    font-size: 14px !important;
  }
}

.roots-of-text .the-root p {
  color: #1E1E20;
}

.accordion-item {
  border-top: none;
  border-left: none;
  border-right: none;
}
.accordion-item .accordion-button {
  border-bottom: none;
}

@media (min-width: 1100px) and (max-width: 1250px) {
  .chairman-message p {
    font-size: 15px;
  }
}
@media (min-width: 360px) and (max-width: 991px) {
  .commitemnts-to .accordion-body p {
    font-size: 14px;
  }
}
.accordian-wrapper {
  margin: 0px;
  padding: 0px 0px;
}
.accordian-wrapper .freezone-emirates-div {
  margin: 0px;
  padding: 160px 0px 0px 0px;
}
@media (max-width: 1100px) {
  .accordian-wrapper .freezone-emirates-div {
    padding: 80px 0px 0px 0px;
  }
}
.accordian-wrapper .freezone-emirates-div h3 {
  margin: 0px;
  padding: 0px 0px 40px 0px;
  font-family: "Tenor Sans";
  font-size: 76px;
  line-height: 75px;
  color: #B79662;
  font-weight: 300;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .accordian-wrapper .freezone-emirates-div h3 {
    font-size: 56px;
  }
}
@media (max-width: 1100px) {
  .accordian-wrapper .freezone-emirates-div h3 {
    font-size: 30px;
    line-height: 34px;
  }
}
.accordian-wrapper .accordion-item {
  border: none;
}
.accordian-wrapper .accordion-item .accordion-button {
  background: url(../images/accordian-bg-hover.png) no-repeat 80% center #fff;
  font-family: "Poppins";
  color: #B79662;
  font-size: 38px;
  font-weight: 300;
  box-shadow: none;
  padding: 20px 0px 20px 0px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .accordian-wrapper .accordion-item .accordion-button {
    font-size: 30px;
    background: url(../images/accordian-bg-mob-hover.png) no-repeat 85% center #fff;
    padding: 30px 0px 30px 0px;
    font-weight: 400;
  }
}
@media (max-width: 1100px) {
  .accordian-wrapper .accordion-item .accordion-button {
    font-size: 18px;
    line-height: 24px;
    background: url(../images/accordian-bg-mob-small-hover.png) no-repeat 90% center #fff;
    padding: 20px 0px 20px 0px;
  }
}
@media (max-width: 767.98px) {
  .accordian-wrapper .accordion-item .accordion-button {
    font-size: 18px;
    line-height: 24px;
    background: url(../images/accordian-bg-mob-small-hover.png) no-repeat 80% center #fff;
    padding: 20px 0px 20px 0px;
  }
}
.accordian-wrapper .accordion-item .accordion-button span {
  color: #E6E6E6;
  margin-right: 35px;
  font-weight: 400;
  opacity: 0.6;
}
@media (max-width: 1600px) {
  .accordian-wrapper .accordion-item .accordion-button span {
    margin-right: 28px;
    font-size: 42px;
    min-width: 50px;
  }
}
.accordian-wrapper .accordion-item .accordion-button::after {
  background: url(../images/accordian-arrow-hover.png) no-repeat 0px 0px;
  width: 68px;
  height: 68px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .accordian-wrapper .accordion-item .accordion-button::after {
    width: 55px;
    height: 55px;
    background-size: 100%;
  }
}
@media (max-width: 1100px) {
  .accordian-wrapper .accordion-item .accordion-button::after {
    background: url(../images/accordian-arrow-mob-hover.png) no-repeat 0px 0px;
    width: 30px;
    height: 30px;
  }
}
.accordian-wrapper .accordion-item .accordion-button.collapsed {
  color: #1F1F22;
  background: url(../images/accordian-bg.png) no-repeat 80% center #fff;
  padding: 20px 0px;
  font-weight: 400;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .accordian-wrapper .accordion-item .accordion-button.collapsed {
    background: url(../images/accordian-bg-mob.png) no-repeat 85% center #fff;
  }
}
@media (max-width: 1100px) {
  .accordian-wrapper .accordion-item .accordion-button.collapsed {
    background: url(../images/accordian-bg-mob-small.png) no-repeat 90% center #fff;
  }
}
@media (max-width: 767.98px) {
  .accordian-wrapper .accordion-item .accordion-button.collapsed {
    background: url(../images/accordian-bg-mob-small.png) no-repeat 80% center #fff;
    font-weight: 400;
  }
}
.accordian-wrapper .accordion-item .accordion-button.collapsed::after {
  background: url(../images/accordian-arrow.png) no-repeat 0px 0px;
  width: 67px;
  height: 68px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .accordian-wrapper .accordion-item .accordion-button.collapsed::after {
    width: 55px;
    height: 56px;
    background-size: 100%;
  }
}
@media (max-width: 1100px) {
  .accordian-wrapper .accordion-item .accordion-button.collapsed::after {
    background: url(../images/accordian-arrow-mob.png) no-repeat 0px 0px;
    width: 30px;
    height: 30px;
  }
}
.accordian-wrapper .accordion-body {
  /*padding: 0px 0px 0px 95px;*/
}
@media (max-width: 1100px) {
  .accordian-wrapper .accordion-body {
    padding: 0px 0px 0px 0px;
  }
}
.accordian-wrapper .accordion-body .freezone-slider {
  position: relative;
  border-radius: 40px;
  text-align: center;
  display: block;
}
.accordian-wrapper .accordion-body .freezone-slider::after {
  position: absolute;
  content: "";
  background: #000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 40px;
  opacity: 0.5;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .accordian-wrapper .accordion-body .freezone-slider::after {
    border-radius: 25px;
  }
}
@media (max-width: 1100px) {
  .accordian-wrapper .accordion-body .freezone-slider::after {
    border-radius: 20px;
  }
}
.accordian-wrapper .accordion-body .freezone-slider h4 {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  color: #fff;
  z-index: 1;
  font-family: "Poppins";
  font-size: 26px;
  line-height: 44px;
  font-weight: 400;
  left: 0;
  right: 0;
  padding: 0 30px;
  text-transform: uppercase;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .accordian-wrapper .accordion-body .freezone-slider h4 {
    font-size: 20px;
    line-height: 26px;
  }
}
@media (max-width: 1100px) {
  .accordian-wrapper .accordion-body .freezone-slider h4 {
    font-size: 16px;
    line-height: 21px;
  }
}
@media (max-width: 767.98px) {
  .accordian-wrapper .accordion-body .freezone-slider h4 {
    font-size: 16px;
    line-height: 21px;
  }
}
.accordian-wrapper .accordion-body .freezone-slider:hover h4::after {
  margin: 0px auto;
  padding: 0px 0px;
  border-bottom: 6px solid #B79662;
  content: "";
  position: absolute;
  bottom: -10px;
  width: 140px;
  left: 0;
  right: 0;
  transition: 0.5s ease;
}

.freezone-slider:hover h4::before {
  position: relative;
  width: 200px;
  height: 10px;
  color: red;
  top: 0;
  display: block;
  left: 0;
  transform: scaleX(0);
  transition: all 0.4s ease-in-out 0s;
}

.freezone-activity-div {
  margin: 0px;
  padding: 0px;
}
.freezone-activity-div h3 {
  margin: 0px;
  padding: 50px 0px 40px 0px;
  font-family: "Tenor Sans";
  font-size: 76px;
  line-height: 75px;
  color: #000;
  font-weight: 300;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .freezone-activity-div h3 {
    font-size: 56px;
    padding: 60px 0px 60px 0px;
  }
}
@media (max-width: 1100px) {
  .freezone-activity-div h3 {
    font-size: 30px;
    line-height: 34px;
  }
}

.freezone-incorporation-div {
  margin: 0px;
  padding: 0px 0 100px 0;
}
@media (max-width: 1100px) {
  .freezone-incorporation-div {
    background-repeat: no-repeat !important;
    background-position: center !important;
    padding: 0 5%;
  }
}
@media (max-width: 767.98px) {
  .freezone-incorporation-div {
    background-position: 0px 40% !important;
    background-size: 100% !important;
  }
}
.freezone-incorporation-div .freezone-content-section {
  padding: 100px 100px 700px 65px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .freezone-incorporation-div .freezone-content-section {
    padding: 100px 0px 620px 0px;
  }
}
@media (max-width: 1100px) {
  .freezone-incorporation-div .freezone-content-section {
    padding: 100px 0px 700px 0px;
  }
}
@media (max-width: 767.98px) {
  .freezone-incorporation-div .freezone-content-section {
    padding: 100px 0px 300px 0px;
  }
}
.freezone-incorporation-div .freezone-content-section h2 {
  margin: 0px;
  padding: 0px;
  font-family: "Tenor Sans";
  font-size: 78px;
  text-transform: uppercase;
  line-height: 92px;
  font-weight: 300;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .freezone-incorporation-div .freezone-content-section h2 {
    font-size: 58px;
    line-height: 65px;
  }
}
@media (max-width: 1100px) {
  .freezone-incorporation-div .freezone-content-section h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 45px;
  }
}
.freezone-incorporation-div .freezone-content-section p {
  margin: 0px;
  padding: 0px 0px;
  font-family: "Poppins";
  font-size: 22px;
  font-weight: 400;
  line-height: 38px;
  color: #1E1E20;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .freezone-incorporation-div .freezone-content-section p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
  }
}
@media (max-width: 1100px) {
  .freezone-incorporation-div .freezone-content-section p {
    font-size: 16px;
    line-height: 25px;
  }
}
.freezone-incorporation-div .why-freedom-incorporation {
  margin: 0px;
  padding: 0px 100px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .freezone-incorporation-div .why-freedom-incorporation {
    padding: 0px 0px;
  }
}
@media (max-width: 1100px) {
  .freezone-incorporation-div .why-freedom-incorporation {
    padding: 0px 0px;
  }
}
@media (max-width: 767.98px) {
  .freezone-incorporation-div .why-freedom-incorporation {
    padding: 0 4%;
  }
}
.freezone-incorporation-div .why-freedom-incorporation h2 {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 70px 0px;
  font-family: "Tenor Sans";
  font-size: 46px;
  font-weight: 300;
  text-align: center;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .freezone-incorporation-div .why-freedom-incorporation h2 {
    font-size: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 1100px) {
  .freezone-incorporation-div .why-freedom-incorporation h2 {
    font-size: 28px;
    line-height: 32px;
    text-align: left;
  }
}
.freezone-incorporation-div .why-freedom-incorporation i {
  display: inline-block;
  margin-right: 30px;
  width: 70px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .freezone-incorporation-div .why-freedom-incorporation i {
    margin-right: 15px;
  }
}
@media (max-width: 1100px) {
  .freezone-incorporation-div .why-freedom-incorporation i {
    margin-right: 20px;
    /* width: 20%;*/
    vertical-align: top;
  }
}
.freezone-incorporation-div .why-freedom-incorporation i img {
  width: 65px;
  height: 65px;
}
@media (max-width: 1600px) {
  .freezone-incorporation-div .why-freedom-incorporation i img {
    width: 55px;
    height: 55px;
  }
}
.freezone-incorporation-div .why-freedom-incorporation span {
  display: inline-block;
  margin-bottom: 60px;
  font-family: "Poppins";
  font-size: 18px;
  line-height: 27px;
  color: #242326;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .freezone-incorporation-div .why-freedom-incorporation span {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 1100px) {
  .freezone-incorporation-div .why-freedom-incorporation span {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 22px;
    width: 70%;
    vertical-align: middle;
  }
}

.what-we-can-do-div {
  margin: 0px;
  padding: 200px 0px 100px 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0a0a0b+0,0a0a0b+51,424243+100 */
  background: #0a0a0b; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #0a0a0b 0%, #0a0a0b 51%, #424243 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#0a0a0b", endColorstr="#424243",GradientType=0 ); /* IE6-9 */
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div {
    padding: 100px 0px 80px 0;
  }
}
@media (max-width: 1100px) {
  .what-we-can-do-div {
    padding: 100px 0px 100px 0;
  }
}
.what-we-can-do-div h2, .what-we-can-do-div-h2 {
  margin: 0px;
  padding: 0px;
  color: white;
  text-align: center;
  font-family: "Tenor Sans";
  font-size: 78px;
  line-height: 92px;
  text-transform: uppercase;
  font-weight: 300;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div h2, .what-we-can-do-div-h2 {
    font-size: 58px;
    line-height: 72px;
  }
}
@media (max-width: 1100px) {
  .what-we-can-do-div h2, .what-we-can-do-div-h2 {
    font-size: 32px;
    line-height: 37px;
  }
}
.what-we-can-do-div .infographics-div {
  margin: 0px auto;
  text-align: center;
  display: table;
  position: relative;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div img {
    width: 600px;
  }
}
@media (max-width: 1310px) {
  .what-we-can-do-div .infographics-div {
    display: none;
  }
}
.what-we-can-do-div .infographics-div .div-1 {
  margin: 0px;
  padding: 0px;
  position: absolute;
  text-align: right;
  /*left: -290px;*/
  left: -305px;
  top: 130px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-1 {
    left: -342px;
    top: 54px;
  }
}
.what-we-can-do-div .infographics-div .div-1 h4 {
  margin: 0px 0px 40px 0px;
  padding: 0px;
  font-family: "Poppins";
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 400;
  color: #b79662;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-1 h4 {
    font-size: 18px;
    line-height: 23px;
    margin: 0px 0px 35px 0px;
  }
}
.what-we-can-do-div .infographics-div .div-1 p {
  margin: 0px;
  padding: 0px;
  font-size: 18px;
  color: #FFFFFF;
  font-weight: 300;
  line-height: 27px;
  letter-spacing: 1px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-1 p {
    font-size: 16px;
    line-height: 23px;
    font-weight: 200;
  }
}
.what-we-can-do-div .infographics-div .div-1::after {
  content: "";
  position: absolute;
  background: url("../images/infographics-pointer.png") no-repeat 0px 0px;
  height: 36px;
  width: 473px;
  display: block;
  /* left: 125px;*/
  left: 135px;
  top: 50px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-1::after {
    background: url("../images/infographics-pointer-mob.png") no-repeat 0px 0px;
    left: 124px;
    top: 50px;
  }
}
.what-we-can-do-div .infographics-div .div-2 {
  margin: 0px;
  padding: 0px;
  position: absolute;
  text-align: right;
  /*left: -200px;*/
  left: -155px;
  top: 360px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-2 {
    /*left: -246px;*/
    left: -204px;
    top: 238px;
  }
}
.what-we-can-do-div .infographics-div .div-2 h4 {
  margin: 0px 0px 40px 0px;
  padding: 0px;
  font-family: "Poppins";
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 400;
  color: #b79662;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-2 h4 {
    font-size: 18px;
    line-height: 23px;
    margin: 0px 0px 35px 0px;
  }
}
.what-we-can-do-div .infographics-div .div-2 p {
  margin: 0px;
  padding: 0px;
  font-size: 18px;
  color: #FFFFFF;
  font-weight: 300;
  line-height: 27px;
  letter-spacing: 1px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-2 p {
    font-size: 16px;
    line-height: 23px;
    font-weight: 200;
  }
}
.what-we-can-do-div .infographics-div .div-2::after {
  content: "";
  position: absolute;
  background: url("../images/infographics-pointer.png") no-repeat 0px 0px;
  height: 36px;
  width: 473px;
  display: block;
  /*left: -115px;*/
  left: -160px;
  top: 50px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-2::after {
    background: url("../images/infographics-pointer-mob.png") no-repeat 0px 0px;
    /* left: -89px;*/
    left: -64%;
    top: 50px;
  }
}
.what-we-can-do-div .infographics-div .div-3 {
  margin: 0px;
  padding: 0px;
  position: absolute;
  text-align: right;
  /* left: -330px;*/
  left: -242px;
  top: 640px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-3 {
    /* left: -363px;*/
    left: -284px;
    top: 450px;
  }
}
.what-we-can-do-div .infographics-div .div-3 h4 {
  margin: 0px 0px 40px 0px;
  padding: 0px;
  font-family: "Poppins";
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 400;
  color: #b79662;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-3 h4 {
    font-size: 18px;
    line-height: 23px;
    margin: 0px 0px 35px 0px;
  }
}
.what-we-can-do-div .infographics-div .div-3 p {
  margin: 0px;
  padding: 0px;
  font-size: 18px;
  color: #FFFFFF;
  font-weight: 300;
  line-height: 27px;
  letter-spacing: 1px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-3 p {
    font-size: 16px;
    line-height: 23px;
    font-weight: 200;
  }
}
.what-we-can-do-div .infographics-div .div-3::after {
  content: "";
  position: absolute;
  background: url("../images/infographics-pointer.png") no-repeat 0px 0px;
  height: 36px;
  width: 473px;
  display: block;
  /* left: -62px;*/
  left: -30px;
  top: 50px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-3::after {
    background: url("../images/infographics-pointer-mob.png") no-repeat 0px 0px;
    /*left: 110px;*/
    left: 10%;
    top: 50px;
  }
}
.what-we-can-do-div .infographics-div .div-4 {
  margin: 0px;
  padding: 0px;
  position: absolute;
  text-align: left;
  /*right: -260px;*/
  right: -70px;
  top: 130px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-4 {
    /*right: -290px;*/
    right: -128px;
    top: 55px;
  }
}
.what-we-can-do-div .infographics-div .div-4 h4 {
  margin: 0px 0px 40px 0px;
  padding: 0px;
  font-family: "Poppins";
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 400;
  color: #b79662;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-4 h4 {
    font-size: 18px;
    line-height: 23px;
    margin: 0px 0px 35px 0px;
  }
}
.what-we-can-do-div .infographics-div .div-4 p {
  margin: 0px;
  padding: 0px;
  font-size: 18px;
  color: #FFFFFF;
  font-weight: 300;
  line-height: 27px;
  letter-spacing: 1px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-4 p {
    font-size: 16px;
    line-height: 23px;
    font-weight: 200;
  }
}
.what-we-can-do-div .infographics-div .div-4::after {
  content: "";
  position: absolute;
  background: url("../images/infographics-pointer.png") no-repeat 0px 0px;
  height: 36px;
  width: 473px;
  display: block;
  /*right: 20px;*/
  right: -172px;
  top: 50px;
  transform: rotate(180deg);
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-4::after {
    background: url("../images/infographics-pointer-mob.png") no-repeat 0px 0px;
    /* right: 14px;*/
    right: -114%;
    top: 50px;
  }
}
.what-we-can-do-div .infographics-div .div-5 {
  margin: 0px;
  padding: 0px;
  position: absolute;
  text-align: left;
  right: -240px;
  top: 360px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-5 {
    right: -280px;
    top: 240px;
  }
}
.what-we-can-do-div .infographics-div .div-5 h4 {
  margin: 0px 0px 40px 0px;
  padding: 0px;
  font-family: "Poppins";
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 400;
  color: #b79662;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-5 h4 {
    font-size: 18px;
    line-height: 23px;
    margin: 0px 0px 35px 0px;
  }
}
.what-we-can-do-div .infographics-div .div-5 p {
  margin: 0px;
  padding: 0px;
  font-size: 18px;
  color: #FFFFFF;
  font-weight: 300;
  line-height: 27px;
  letter-spacing: 1px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-5 p {
    font-size: 16px;
    line-height: 23px;
    font-weight: 200;
  }
}
.what-we-can-do-div .infographics-div .div-5::after {
  content: "";
  position: absolute;
  background: url("../images/infographics-pointer.png") no-repeat 0px 0px;
  height: 36px;
  width: 473px;
  display: block;
  right: -85px;
  top: 50px;
  transform: rotate(180deg);
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-5::after {
    background: url("../images/infographics-pointer-mob.png") no-repeat 0px 0px;
    right: -58px;
    top: 50px;
  }
}
.what-we-can-do-div .infographics-div .div-6 {
  margin: 0px;
  padding: 0px;
  position: absolute;
  text-align: left;
  /*right: -235px;*/
  right: -179px;
  top: 640px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-6 {
    /*right: -270px;*/
    right: -225px;
    top: 448px;
  }
}
.what-we-can-do-div .infographics-div .div-6 h4 {
  margin: 0px 0px 40px 0px;
  padding: 0px;
  font-family: "Poppins";
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 400;
  color: #b79662;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-6 h4 {
    font-size: 18px;
    line-height: 23px;
    margin: 0px 0px 35px 0px;
  }
}
.what-we-can-do-div .infographics-div .div-6 p {
  margin: 0px;
  padding: 0px;
  font-size: 18px;
  color: #FFFFFF;
  font-weight: 300;
  line-height: 27px;
  letter-spacing: 1px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-6 p {
    font-size: 16px;
    line-height: 23px;
    font-weight: 200;
  }
}
.what-we-can-do-div .infographics-div .div-6::after {
  content: "";
  position: absolute;
  background: url("../images/infographics-pointer.png") no-repeat 0px 0px;
  height: 36px;
  width: 473px;
  display: block;
  /*right: 30px;*/
  right: -24px;
  top: 50px;
  transform: rotate(180deg);
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-we-can-do-div .infographics-div .div-6::after {
    background: url("../images/infographics-pointer-mob.png") no-repeat 0px 0px;
    /* right: 70px;*/
    right: 10%;
    top: 50px;
  }
}

.faq-main-wrapper {
  margin: 0px;
  padding: 160px 0px 110px 0;
  background: url("../images/second-fold-bg.png") no-repeat bottom center #fff;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .faq-main-wrapper {
    padding: 100px 0px 80px 0;
  }
}
@media (max-width: 1100px) {
  .faq-main-wrapper {
    padding: 50px 0px 80px 0;
  }
}
@media (max-width: 767.98px) {
  .faq-main-wrapper {
    padding: 50px 0px 60px 0;
  }
}
.faq-main-wrapper h2, .faq-main-wrapper-h2 {
  margin: 0px;
  padding: 0px 0px 100px 0px;
  font-family: "Tenor Sans";
  font-size: 78px;
  line-height: 92px;
  color: #1E1E20;
  font-weight: 300;
  text-transform: uppercase;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .faq-main-wrapper h2, .faq-main-wrapper-h2 {
    font-size: 50px;
    line-height: 60px;
    padding: 0px 0px 50px 0px;
  }
}
@media (max-width: 1100px) {
  .faq-main-wrapper h2, .faq-main-wrapper-h2 {
    font-size: 32px;
    line-height: 36px;
    padding-bottom: 70px;
  }
}
.faq-main-wrapper .accordion {
  padding: 0px 0px 0px 0px;
}
@media (max-width: 1100px) {
  .faq-main-wrapper .accordion {
    padding: 0px 0px 0px 0px;
  }
}
.faq-main-wrapper .accordion .accordion-item {
  border: none;
  margin: 0px 0px 20px 0px;
  background: transparent;
}
@media (max-width: 1600px) {
  .faq-main-wrapper .accordion .accordion-item {
    margin: 0px 0px 25px 0px;
  }
}
.faq-main-wrapper .accordion .accordion-button {
  background: none;
  padding: 0px 0px 20px 120px;
}
.faq-main-wrapper .accordion .accordion-button.collapsed {
  border-bottom: 1px solid #ccc !important;
  padding: 0px 0px 20px 120px;
}
@media (max-width: 1100px) {
  .faq-main-wrapper .accordion .accordion-button.collapsed {
    padding: 0px 0px 20px 70px;
  }
}
.faq-main-wrapper .accordion .accordion-button {
  margin: 0px;
  padding: 0px 0px 0px 120px;
  font-size: 32px;
  font-family: "Poppins";
  line-height: 54px;
  color: #1F1F22;
  box-shadow: none;
  font-weight: 500;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .faq-main-wrapper .accordion .accordion-button {
    font-size: 24px;
    line-height: 38px;
  }
}
@media (max-width: 1100px) {
  .faq-main-wrapper .accordion .accordion-button {
    font-size: 18px;
    line-height: 24px;
    padding: 0px 0px 0px 70px;
  }
}
.faq-main-wrapper .accordion .accordion-button::after {
  background: url("../images/accordian-plus-symbol.png") no-repeat 0px 0px !important;
  height: 42px;
  width: 51px;
  left: 0px !important;
  position: absolute;
}
@media (max-width: 1100px) {
  .faq-main-wrapper .accordion .accordion-button::after {
    left: 0px !important;
  }
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .faq-main-wrapper .accordion .accordion-button::after {
    background: url("../images/accordian-plus-symbol-mob.png") no-repeat 0px 0px !important;
  }
}
@media (max-width: 1100px) {
  .faq-main-wrapper .accordion .accordion-button::after {
    background: url("../images/accordian-plus-symbol-mob.png") no-repeat 0px 0px !important;
  }
}
@media (max-width: 767.98px) {
  .faq-main-wrapper .accordion .accordion-button::after {
    background: url("../images/accordian-plus-symbol-mob.png") no-repeat 0px 0px !important;
  }
}
.faq-main-wrapper .accordion .accordion-body {
  padding: 30px 0px 30px 120px;
  border-bottom: 1px solid #ccc;
}
.faq-main-wrapper .accordion .accordion-body p {
  font-size: 21px;
  font-family: "Poppins";
  line-height: 38px;
  color: #1F1F22;
  font-weight: 400;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .faq-main-wrapper .accordion .accordion-body p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 1100px) {
  .faq-main-wrapper .accordion .accordion-body p {
    font-size: 14px;
    line-height: 25px;
  }
}
@media (max-width: 1100px) {
  .faq-main-wrapper .accordion .accordion-body {
    padding: 30px 0px 30px 70px;
  }
}
.faq-main-wrapper .accordion .accordion-button:not(.collapsed)::after {
  background: url("../images/accordian-minus.png") no-repeat 0px 0px !important;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .faq-main-wrapper .accordion .accordion-button:not(.collapsed)::after {
    background: url("../images/accordian-minus-mob.png") no-repeat 0px 0px !important;
  }
}
@media (max-width: 1100px) {
  .faq-main-wrapper .accordion .accordion-button:not(.collapsed)::after {
    background: url("../images/accordian-minus-mob.png") no-repeat 0px 0px !important;
  }
}
@media (max-width: 767.98px) {
  .faq-main-wrapper .accordion .accordion-button:not(.collapsed)::after {
    background: url("../images/accordian-minus-mob.png") no-repeat 0px 0px !important;
  }
}
/*.faq-main-wrapper h4 {
  margin: 100px 0px 30px 0px;
  padding: 0px 0px;
  text-align: center;
  font-size: 46px;
  font-family: "Poppins";
  line-height: 73px;
  color: #B79662;
  font-weight: 500;
	display: block;
}*/
/*@media (min-width: 1100px) and (max-width: 1600px) {
  .faq-main-wrapper h4 {
    font-size: 36px;
    font-weight: 400;
  }
}
@media (max-width: 1100px) {
  .faq-main-wrapper h4 {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767.98px) {
  .faq-main-wrapper h4 {
    margin: 80px 0px 30px 0px;
  }
}
*/

#scroll-bottom h4 {
  margin: 100px 0px 30px 0px;
  padding: 0px 0px;
  text-align: center;
  font-size: 46px;
  font-family: "Poppins";
  line-height: 73px;
  color: #B79662;
  font-weight: 500;
	display: block;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  #scroll-bottom h4 {
    font-size: 36px;
    font-weight: 400;
  }
}
@media (max-width: 1100px) {
  #scroll-bottom h4 {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767.98px) {
  #scroll-bottom h4 {
    margin: 80px 0px 30px 0px;
  }
}


.faq-main-wrapper-h4 {
  margin: 100px 0px 30px 0px;
  padding: 0px 0px;
  text-align: center;
  font-size: 46px;
  font-family: "Poppins";
  line-height: 73px;
  color: #B79662;
  font-weight: 500;
	display: block;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .faq-main-wrapper-h4 {
    font-size: 36px;
    /*font-weight: 400;*/
  }
}
@media (max-width: 1100px) {
  .faq-main-wrapper-h4 {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767.98px) {
  .faq-main-wrapper-h4 {
    margin: 80px 0px 30px 0px;
  }
}


.faq-main-wrapper .connect-with-us-wrapper {
  margin: 0px auto;
  max-width: 1000px;
  width: 100%;
}
.faq-main-wrapper .connect-with-us-wrapper .floating-label-group {
  position: relative;
  margin-top: 15px;
  margin-bottom: 25px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .faq-main-wrapper .connect-with-us-wrapper .floating-label-group {
    margin-bottom: 7px;
  }
}
.faq-main-wrapper .connect-with-us-wrapper .floating-label-group input, .faq-main-wrapper .connect-with-us-wrapper .floating-label-group textarea {
  background: none;
  border: 1px solid #B79662;
  outline: none;
  border-radius: 0;
  resize: none;
  width: 100%;
  color: #5A5A5A;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 8px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .faq-main-wrapper .connect-with-us-wrapper .floating-label-group input, .faq-main-wrapper .connect-with-us-wrapper .floating-label-group textarea {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
.faq-main-wrapper .connect-with-us-wrapper .floating-label-group textarea {
  height: 150px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .faq-main-wrapper .connect-with-us-wrapper .floating-label-group textarea {
    margin-bottom: 30px;
  }
}
.faq-main-wrapper .connect-with-us-wrapper .floating-label-group input:focus, .faq-main-wrapper .connect-with-us-wrapper .floating-label-group textarea:focus {
  border: 1px solid #B79662;
  background: none;
  outline: none;
  box-shadow: none;
  color: #222423;
}
.faq-main-wrapper .connect-with-us-wrapper .floating-label-group .floating-label {
  font-size: 18px;
  color: #000;
  position: absolute;
  pointer-events: none;
  top: 19px;
  left: 30px;
  transition: all 0.1s ease;
  font-family: "poppins";
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .faq-main-wrapper .connect-with-us-wrapper .floating-label-group .floating-label {
    font-size: 16px;
    top: 18px;
  }
}
.faq-main-wrapper .connect-with-us-wrapper .floating-label-group input:focus ~ .floating-label,
.faq-main-wrapper .connect-with-us-wrapper .floating-label-group input:not(:focus):valid ~ .floating-label,
.faq-main-wrapper .connect-with-us-wrapper .floating-label-group textarea:focus ~ .floating-label {
  top: -15px;
  bottom: 0px;
  left: 10px;
  font-size: 11px;
  opacity: 1;
  color: #989898;
  font-size: 18px;
  color: #000;
  background: #fff;
  padding: 5px 10px;
  display: table;
  border-radius: 10px;
}
.faq-main-wrapper .connect-with-us-wrapper .focus-label ~ .floating-label {
  top: -15px;
  background: #fff;
  padding: 5px 10px;
}
.faq-main-wrapper .connect-with-us-wrapper .wpcf7-form-control-wrap {
  position: relative;
}
.faq-main-wrapper .web-button {
  display: table;
  margin: 0 auto;
}

.home-banner {
  /* h1{
       text-align: center;
       font-family: 'Kiona';
       font-size: 130px;
       color: #FFFFFF;
       text-transform: uppercase;
       font-weight: 400;
       margin-top: 7%;
       line-height: 115px;

       @include max-laptop{
           font-size: 90px;
           line-height:75px;
       }
       @include max-1100{
           font-size: 40px;
           margin-top: 40%;
           line-height: 40px;
       }
       @include max-1025{
           font-size: 40px;
           margin-top: 10%;
           line-height: 40px;
       }
       @include max-768{
           font-size: 40px;
           margin-top: 60%;
           line-height: 40px;
       }
   }*/
}
.home-banner h2, .home-banner h1.home-banner-h2 {
  text-align: center;
  /*font-family: "Kiona";*/
  font-family: 'Trakya-Sans-300';
  font-size: 130px;
  color: #FFFFFF;
  text-transform: capitalize;
  font-weight: 400;
  margin-top: 7%;
  line-height: 130px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .home-banner h2, .home-banner h1.home-banner-h2 {
    font-size: 90px;
    /*line-height: 75px;*/
    line-height: 90px;
    margin-top: 3%;
  }
}
@media (max-width: 1100px) {
  .home-banner h2, .home-banner h1.home-banner-h2 {
    font-size: 40px;
    margin-top: 40%;
    line-height: 50px;
  }
}
@media (max-width: 1025px) {
  .home-banner h2, .home-banner h1.home-banner-h2 {
    font-size: 40px;
    margin-top: 10%;
    line-height: 50px;
  }
}
@media (max-width: 767.98px) {
  .home-banner h2, .home-banner h1.home-banner-h2 {
    font-size: 40px;
    margin-top: 60%;
    line-height: 50px;
  }
}
.home-banner .what-is-freezone {
  margin: 60px auto 0;
  padding: 10px 30px;
  border: 3px solid #FFFFFF;
  display: table;
  border-radius: 50px;
  color: #fff;
  text-transform: uppercase;
  font-family: "poppins";
  font-size: 24px;
  letter-spacing: 2px;
  opacity: 0.8;
  line-height: 0;
}
.home-banner .what-is-freezone:hover {
  background: #1d1d1f;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .home-banner .what-is-freezone {
    font-size: 20px;
    margin: 20px auto 0;
  }
}
@media (max-width: 1100px) {
  .home-banner .what-is-freezone {
    font-size: 15px;
  }
}
@media (max-width: 767.98px) {
  .home-banner .what-is-freezone {
    padding: 8px 30px;
    line-height: 20px;
  }
}
.home-banner .what-is-freezone i {
  margin: 0px 0px 0px 18px;
  display: inline-block;
}
.home-banner .what-is-freezone i img {
  width: auto;
}

.freeconsultation-tab-section {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#424243+0,0a0a0b+100 */
  background: #1d1d1f; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #1d1d1f 0%, #0A0A0B 30%, #424243 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#1d1d1f ", endColorstr="#0a0a0b",GradientType=0 ); /* IE6-9 */
  position: relative;
  margin-top: -170px;
  z-index: 1;
}
.freeconsultation-tab-section::after {
  position: absolute;
  content: "";
  background: url("../images/second-fold-bg.png") no-repeat center;
  top: -350px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.1;
  background-size: contain;
}
@media (max-width: 991.98px) {
  .freeconsultation-tab-section::after {
    position: absolute;
    content: "";
    background: url(../images/mobile-second-fold.svg) no-repeat center;
    top: -435px;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 1;
    background-size: cover;
  }
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .freeconsultation-tab-section {
    background: #101011;
    /*background: linear-gradient(to bottom, #232123 0%, #0A0A0B 30%, #424243 100%);*/
    background: linear-gradient(to bottom, rgba(35, 33, 35, 0) 0%, #0A0A0B 15%, #424243 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#1d1d1f ", endColorstr="#424243",GradientType=0 );
    position: relative;
    /* margin-top: 0;*/
    margin-top: -260px;
  }
}
@media (max-width: 1100px) {
  .freeconsultation-tab-section {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#424243+0,0a0a0b+100 */
    background: #1d1f22; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #1d1f22 0%, #0a0a0b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#1d1f22 ", endColorstr="#0a0a0b",GradientType=0 ); /* IE6-9 */
    position: relative;
    margin-top: 0px;
  }
}
@media (max-width: 1025px) {
  .freeconsultation-tab-section {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#424243+0,0a0a0b+100 */
    background: #1d1f22;
    background: linear-gradient(to bottom, #0f0f10 0%, #0a0a0b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#1d1f22 ", endColorstr="#0a0a0b",GradientType=0 );
    position: relative;
    margin-top: 0px;
  }
}
@media (max-width: 767.98px) {
  .freeconsultation-tab-section {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#424243+0,0a0a0b+100 */
    background: #1d1f22; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #1d1f22 0%, #0a0a0b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#1d1f22 ", endColorstr="#0a0a0b",GradientType=0 ); /* IE6-9 */
    position: relative;
    margin-top: -20px;
  }
}
.freeconsultation-tab-section .freeconsultation-div {
  margin: 0px;
  padding: 0px;
  position: relative;
  z-index: 99;
}
@media (max-width: 1100px) {
  .freeconsultation-tab-section .freeconsultation-div {
    text-align: center;
  }
}
.freeconsultation-tab-section .freeconsultation-div i {
  display: inline-block;
  vertical-align: middle;
  max-width: 70px;
  width: 70px;
  flex: 0 0 70px;
}
@media (max-width: 1600px) {
  .freeconsultation-tab-section .freeconsultation-div i {
    max-width: 45px;
    width: 45px;
    flex: 0 0 45px;
  }
}
@media (max-width: 1100px) {
  .freeconsultation-tab-section .freeconsultation-div i {
    display: block;
    margin: auto;
  }
  .freeconsultation-tab-section .freeconsultation-div i img {
    text-align: center;
    margin: auto;
  }
}
@media (max-width: 767.98px) {
  .freeconsultation-tab-section .freeconsultation-div i img {
    width: 80%;
  }
}
.freeconsultation-tab-section .freeconsultation-div span {
  margin: 0px 0px 0px 30px;
  padding: 0px 0px;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  text-align: left;
  font-size: 24px;
  font-family: "Poppins";
  line-height: 34px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .freeconsultation-tab-section .freeconsultation-div span {
    font-size: 18px;
    line-height: 24px;
    margin: 0px 0px 0px 20px;
  }
}
@media (max-width: 1100px) {
  .freeconsultation-tab-section .freeconsultation-div span {
    display: block;
    margin: auto;
    font-size: 14px;
    text-align: center;
  }
  .freeconsultation-tab-section .freeconsultation-div span br {
    display: none;
  }
}
.freeconsultation-tab-section .freeconsultation-div .col-md-3 {
  margin: 0px 0px;
  padding: 0px 2%;
  background: url("../images/banner-divided.png") no-repeat right center;
  text-align: center;
  display: flex;
}
.freeconsultation-tab-section .freeconsultation-div .col-md-3:last-child {
  background: none;
}
@media (max-width: 1100px) {
  .freeconsultation-tab-section .freeconsultation-div .col-md-3 {
    /*margin-bottom: 60px;*/
  }
}
@media (max-width: 767.98px) {
  .freeconsultation-tab-section .freeconsultation-div .col-md-3 {
    margin-bottom: 40px;
    display: block;
    background: none;
  }
}
.freeconsultation-tab-section .freeconsultation-div .freeconsultation-button {
  margin: 50px auto 0 auto;
  padding: 8px 45px;
  background: #B79662;
  border-radius: 50px;
  display: table;
  color: #202023;
  text-transform: uppercase;
  font-family: "poppins";
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 500;
}
.freeconsultation-tab-section .freeconsultation-div .freeconsultation-button:hover {
  background: #fff;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .freeconsultation-tab-section .freeconsultation-div .freeconsultation-button {
    font-size: 20px;
    padding: 7px 35px;
    font-weight: 500;
  }
}
@media (max-width: 1100px) {
  .freeconsultation-tab-section .freeconsultation-div .freeconsultation-button {
    font-size: 16px;
    padding: 10px 30px;
  }
}
@media (max-width: 767.98px) {
  .freeconsultation-tab-section .freeconsultation-div .freeconsultation-button img {
    margin: inherit !important;
    width: auto !important;
  }
  .freeconsultation-tab-section .freeconsultation-div .freeconsultation-button i {
    display: inline-block;
  }
}
.freeconsultation-tab-section .freeconsultation-div .freeconsultation-button i {
  width: auto;
  max-width: auto;
  margin-left: 10px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .freeconsultation-tab-section .freeconsultation-div .freeconsultation-button i img {
    width: 17px;
  }
}
.freeconsultation-tab-section .freezone-tab-section {
  margin: 200px auto 0;
  padding: 0px 0px 110px 0px;
  position: relative;
  z-index: 1;
  /*  target the elemenent after the label*/
}
@media (max-width: 767.98px) {
  .freeconsultation-tab-section .freezone-tab-section {
    margin: 100px auto 0;
    padding: 0px 0px 80px 0px;
    margin: 80px auto 0;
  }
}
.freeconsultation-tab-section .freezone-tab-section h2 {
  margin: 0px 0px 70px 0px;
  padding: 0px 0px;
  text-align: center;
  font-family: "Tenor Sans";
  font-size: 52px;
  line-height: 70px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 300;
}
.freeconsultation-tab-section .freezone-tab-section h2 span {
  color: #B79662;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .freeconsultation-tab-section .freezone-tab-section h2 {
    font-size: 38px;
    line-height: 54px;
  }
}
@media (max-width: 1100px) {
  .freeconsultation-tab-section .freezone-tab-section h2 {
    font-size: 24px;
    line-height: 32px;
  }
}
.freeconsultation-tab-section .freezone-tab-section .dark {
  background-color: #292c35;
}
.freeconsultation-tab-section .freezone-tab-section .checkbox {
  opacity: 0;
  position: absolute;
}
.freeconsultation-tab-section .freezone-tab-section .label {
  width: 50px;
  height: 15px;
  background-color: #B79662;
  display: table;
  border-radius: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  position: relative;
  transform: scale(1.5);
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .freeconsultation-tab-section .freezone-tab-section .label {
    width: 50px;
  }
}
.freeconsultation-tab-section .freezone-tab-section .ball {
  width: 25px;
  height: 18px;
  background-color: #fff;
  position: absolute;
  top: -2px;
  left: -3px;
  border-radius: 20px;
  transition: transform 0.2s linear;
  box-shadow: 0px 0px 21px -3px rgba(0, 0, 0, 0.75);
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .freeconsultation-tab-section .freezone-tab-section .ball {
    width: 25px;
    height: 18px;
    top: -2px;
  }
}
.freeconsultation-tab-section .freezone-tab-section .checkbox:checked + .label .ball {
  transform: translateX(30px);
}
@media (max-width: 767.98px) {
  .freeconsultation-tab-section .freezone-tab-section .checkbox:checked + .label .ball {
    transform: translateX(30px);
  }
}
.freeconsultation-tab-section .freezone-tab-section .activity-div {
  margin: 0px;
  padding: 0px 0px;
  position: relative;
  /* border-bottom-left-radius: 50px;
   border-top-right-radius: 50px;
   border-bottom-right-radius: 0px;
   border-top-left-radius: 0px;*/
  border-radius: 55px !important;
  display: block;
}
@media (max-width: 767.98px) {
  .freeconsultation-tab-section .freezone-tab-section .activity-div {
    margin-bottom: 30px;
    display: block;
  }
}
.freeconsultation-tab-section .freezone-tab-section .activity-div .activity-img-desktop {
  width: 100%;
  /* border-bottom-left-radius: 55px;
   border-top-right-radius: 55px;
   border-bottom-right-radius: 0px;
   border-top-left-radius: 0px;*/
  border-radius: 55px !important;
  display: block;
}
.freeconsultation-tab-section .freezone-tab-section .activity-div .activity-img-mobile {
  display: none;
}
@media (max-width: 767.98px) {
  .freeconsultation-tab-section .freezone-tab-section .activity-div .activity-img-desktop {
    display: none;
  }
  .freeconsultation-tab-section .freezone-tab-section .activity-div .activity-img-mobile {
    display: block;
    width: 100%;
    /* border-bottom-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 0px;*/
    border-radius: 55px !important;
  }
}
.freeconsultation-tab-section .freezone-tab-section .activity-div .activity-content {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  /* border-bottom-left-radius: 50px;
   border-top-right-radius: 50px;
   border-bottom-right-radius: 0px;
   border-top-left-radius: 0px;*/
  border-radius: 50px !important;
  opacity: 0;
  transition: 0.5s ease;
  /*display: none;*/
}
@media (max-width: 767.98px) {
  .freeconsultation-tab-section .freezone-tab-section .activity-div .activity-content {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.3);
  }
}
.freeconsultation-tab-section .freezone-tab-section .activity-div .activity-content h3 {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  text-transform: uppercase;
  font-family: "poppins";
  font-size: 38px;
  color: #B79662;
  font-weight: 400;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .freeconsultation-tab-section .freezone-tab-section .activity-div .activity-content h3 {
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
  .freeconsultation-tab-section .freezone-tab-section .activity-div .activity-content h3 {
    font-size: 24px;
  }
}
.freeconsultation-tab-section .freezone-tab-section .activity-div:hover .activity-content {
  opacity: 1;
  transition: 0.5s ease;
}
.freeconsultation-tab-section .freezone-tab-section .by-emirites-tab {
  margin: 0px;
  padding: 0px 0px;
}
@media (max-width: 1100px) {
  .freeconsultation-tab-section .freezone-tab-section .by-emirites-tab {
    overflow: scroll;
    padding: 20%;
  }
}
.freeconsultation-tab-section .freezone-tab-section .by-emirites-tab .freezone-map-section {
  position: relative;
  margin: auto;
  display: table;
}
@media (max-width: 1100px) {
  .freeconsultation-tab-section .freezone-tab-section .by-emirites-tab .freezone-map-section {
    width: 1005px;
  }
}
.freeconsultation-tab-section .freezone-tab-section .by-emirites-tab .freezone-map-section .freezone-div-1 {
  position: absolute;
  top: 34%;
  color: #e5e5e5;
  font-size: 14px;
  left: 46%;
  font-family: "Poppins";
  text-transform: uppercase;
}
.freeconsultation-tab-section .freezone-tab-section .by-emirites-tab .freezone-map-section .freezone-div-1::after {
  position: absolute;
  content: "";
  width: 43px;
  height: 116px;
  background: url("../images/freezone-map-pointer.png") no-repeat 0px 0px;
  top: -5px;
  right: -69px;
}
.freeconsultation-tab-section .freezone-tab-section .by-emirites-tab .freezone-map-section .freezone-div-2 {
  position: absolute;
  top: 20%;
  color: #e5e5e5;
  font-size: 14px;
  left: 66%;
  font-family: "Poppins";
  text-transform: uppercase;
}
.freeconsultation-tab-section .freezone-tab-section .by-emirites-tab .freezone-map-section .freezone-div-2::after {
  position: absolute;
  content: "";
  width: 43px;
  height: 116px;
  background: url("../images/freezone-map-pointer.png") no-repeat 0px 0px;
  top: -5px;
  right: -69px;
}
.freeconsultation-tab-section .freezone-tab-section .by-emirites-tab .freezone-map-section .freezone-div-3 {
  position: absolute;
  top: 10%;
  color: #e5e5e5;
  font-size: 14px;
  left: 68%;
  font-family: "Poppins";
  text-transform: uppercase;
}
.freeconsultation-tab-section .freezone-tab-section .by-emirites-tab .freezone-map-section .freezone-div-3::after {
  position: absolute;
  content: "";
  width: 43px;
  height: 116px;
  background: url("../images/freezone-map-pointer.png") no-repeat 0px 0px;
  top: -5px;
  right: -69px;
}
.freeconsultation-tab-section .freezone-tab-section .by-emirites-tab .freezone-map-section .freezone-div-4 {
  position: absolute;
  top: 6%;
  color: #e5e5e5;
  font-size: 14px;
  left: 71.5%;
  font-family: "Poppins";
  text-transform: uppercase;
}
.freeconsultation-tab-section .freezone-tab-section .by-emirites-tab .freezone-map-section .freezone-div-4::after {
  position: absolute;
  content: "";
  width: 43px;
  height: 116px;
  background: url("../images/freezone-map-pointer.png") no-repeat 0px 0px;
  top: -5px;
  right: -69px;
}
.freeconsultation-tab-section .freezone-tab-section .by-emirites-tab .freezone-map-section .freezone-div-5 {
  position: absolute;
  top: 2%;
  color: #e5e5e5;
  font-size: 14px;
  left: 67.5%;
  font-family: "Poppins";
  text-transform: uppercase;
}
.freeconsultation-tab-section .freezone-tab-section .by-emirites-tab .freezone-map-section .freezone-div-5::after {
  position: absolute;
  content: "";
  width: 43px;
  height: 116px;
  background: url("../images/freezone-map-pointer.png") no-repeat 0px 0px;
  top: -5px;
  right: -69px;
}
.freeconsultation-tab-section .freezone-tab-section .by-emirites-tab .freezone-map-section .freezone-div-6 {
  position: absolute;
  top: -4%;
  color: #e5e5e5;
  font-size: 14px;
  right: -9%;
  font-family: "Poppins";
  text-transform: uppercase;
}
.freeconsultation-tab-section .freezone-tab-section .by-emirites-tab .freezone-map-section .freezone-div-6::after {
  position: absolute;
  content: "";
  width: 43px;
  height: 116px;
  background: url("../images/freezone-map-pointer.png") no-repeat 0px 0px;
  top: -5px;
  left: -69px;
}
.freeconsultation-tab-section .freezone-tab-section .by-emirites-tab .freezone-map-section .freezone-div-7 {
  position: absolute;
  top: 15%;
  color: #e5e5e5;
  font-size: 14px;
  right: -9%;
  font-family: "Poppins";
  text-transform: uppercase;
}
.freeconsultation-tab-section .freezone-tab-section .by-emirites-tab .freezone-map-section .freezone-div-7::after {
  position: absolute;
  content: "";
  width: 43px;
  height: 116px;
  background: url("../images/freezone-map-pointer.png") no-repeat 0px 0px;
  top: -5px;
  left: -69px;
}
.freeconsultation-tab-section .freezone-tab-section .drap-select {
  margin-bottom: 100px;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  display: none;
}
.freeconsultation-tab-section .freezone-tab-section .drap-select .text-div {
  position: relative;
  top: -9px;
}
@media (max-width: 767.98px) {
  .freeconsultation-tab-section .freezone-tab-section .drap-select .text-div {
    top: -4px;
  }
}
.freeconsultation-tab-section .freezone-tab-section .drap-select .text-div .left-link {
  margin: 0px;
  padding: 0px;
  font-family: "Poppins";
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 22px;
  text-align: left;
  position: absolute;
  left: 10%;
  cursor: default;
}
@media (max-width: 767.98px) {
  .freeconsultation-tab-section .freezone-tab-section .drap-select .text-div .left-link {
    font-size: 15px;
    left: 0;
  }
}
.freeconsultation-tab-section .freezone-tab-section .drap-select .text-div .right-link {
  margin: 0px;
  padding: 0px;
  font-family: "Poppins";
  color: #606061;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 22px;
  text-align: right;
  position: absolute;
  right: 10%;
  cursor: default;
}
@media (max-width: 767.98px) {
  .freeconsultation-tab-section .freezone-tab-section .drap-select .text-div .right-link {
    font-size: 15px;
    right: 0;
  }
}

.freezone-tab-section.freezone-page .activity-div {
  display: none;
}

.freezone-tab-section.freezone-page .by-emirites-tab {
  display: block;
}

.freezone-tab-section .activity-div {
  display: none;
}

.freezone-tab-section .by-emirites-tab {
  display: none;
}

.freezone-tab-section.dark .by-emirites-tab {
  display: block;
}

.freezone-tab-section.dark .right-link {
  color: #B79662 !important;
}

.freezone-tab-section .left-link {
  color: #B79662 !important;
}

.freezone-tab-section.dark .left-link {
  color: #606061 !important;
}

.infographics-mobile {
  display: none !important;
}

@media (max-width: 1310px) {
  .infographics-mobile {
    display: block !important;
    margin: 50px auto;
    padding: 0 7%;
  }
  .infographics-mobile img {
    margin: auto;
  }
}
@media (max-width: 1310px) and (max-width: 767.98px) {
  .infographics-mobile img {
    margin-bottom: 80px;
  }
}
@media (max-width: 1310px) {
  .infographics-mobile .accordion-item {
    background: url(../images/faq-mob.png) no-repeat bottom left transparent;
    border: none;
    padding: 20px 0px 30px;
  }
  .infographics-mobile .accordion-item .accordion-button {
    background: transparent;
    color: #B79662 !important;
    font-family: "Poppins";
    font-size: 18px;
    text-transform: uppercase;
    box-shadow: none;
    padding: 0px;
    line-height: 22px;
  }
  .infographics-mobile .accordion-item .accordion-body {
    margin: 0px;
    padding: 0px;
  }
  .infographics-mobile .accordion-item .accordion-body p {
    color: #fff;
    font-size: 14px;
    line-height: 25px;
    margin-top: 20px;
  }
}
.freezone-detail-banner {
  margin: 0px;
  position: absolute;
  /*bottom: 330px;*/
  transform: translateY(-50%);
  top: 50%;
  width: 80%;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .freezone-detail-banner {
    margin: 0px;
    position: absolute;
    bottom: 50px;
    left: 0;
    padding: 0 25px;
    right: 0;
    transform: inherit;
    width: 100%;
  }
  .freezone-detail-banner .company-logo {
    margin: 0 auto 30px auto;
    width: auto;
  }
}
.freezone-detail-banner h2, .freezone-detail-banner-h2 {
  margin: 0px !important;
  padding: 0px 0px 0 70px;
  font-family: "Kiona";
  font-size: 88px !important;
  line-height: 78px !important;
  text-align: left;
  border-left: 2px solid #95918E;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .freezone-detail-banner h2, .freezone-detail-banner-h2 {
    font-size: 55px !important;
    line-height: 60px !important;
  }
}
@media (max-width: 1100px) {
  .freezone-detail-banner h2, .freezone-detail-banner-h2 {
    font-size: 32px !important;
    line-height: 35px !important;
    padding: 0px 0px 0 20px;
  }
}
@media (max-width: 767.98px) {
  .freezone-detail-banner h2, .freezone-detail-banner-h2 {
    font-size: 40px !important;
    line-height: 36px !important;
    padding: 0;
    text-align: center;
    border-left: 0px;
  }
}
.freezone-detail-banner .freeconsultation-button {
  margin: 50px auto 0 70px;
  padding: 8px 60px;
  background: #B79662;
  border-radius: 50px;
  display: inline-block;
  color: #202023;
  text-transform: uppercase;
  font-family: "poppins";
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 500;
}
.freezone-detail-banner .freeconsultation-button:hover {
  background: #fff;
}
@media (max-width: 1100px) {
  .freezone-detail-banner .freeconsultation-button {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .freezone-detail-banner .freeconsultation-button {
    margin: 50px auto 0 auto;
    padding: 15px 35px;
    display: table;
  }
}
.freezone-detail-banner .freeconsultation-button i {
  display: inline-block;
  vertical-align: middle;
}

.type-companies-wrapper {
  margin: 0px;
  padding: 80px 0px 0px 0px;
}
.type-companies-wrapper h3 {
  margin: 0px 0px 100px 0px;
  padding: 0px 0px;
  font-family: "Tenor Sans";
  font-size: 76px;
  line-height: 75px;
  color: #19191A;
  font-weight: 300;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .type-companies-wrapper h3 {
    font-size: 60px;
    line-height: 65px;
  }
}
@media (max-width: 1100px) {
  .type-companies-wrapper h3 {
    font-size: 45px;
    line-height: 55px;
  }
}
@media (max-width: 767.98px) {
  .type-companies-wrapper h3 {
    font-size: 30px;
    line-height: 32px;
    margin: 0px 0px 50px 0px;
  }
}
.type-companies-wrapper ul {
  margin: 0px auto;
  padding: 0px 0px;
  max-width: 1300px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .type-companies-wrapper ul {
    max-width: 1000px;
  }
}
@media (max-width: 1100px) {
  .type-companies-wrapper ul {
    max-width: 85%;
  }
}
.type-companies-wrapper ul li {
  margin: 0px 0px 50px 0px;
  padding: 10px 10px 10px 10px;
  border: 1px solid #D5D5D5;
  border-radius: 40px;
  display: block;
  text-align: left;
}
.type-companies-wrapper ul li:hover {
  border: none;
  box-shadow: 0px 16px 69px -11px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0px 16px 69px -11px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 16px 69px -11px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767.98px) {
  .type-companies-wrapper ul li {
    border: none;
    box-shadow: 0px 18px 32px 0px rgba(0, 0, 0, 0.45);
  }
}
@media (max-width: 767.98px) {
  .type-companies-wrapper ul li {
    padding-bottom: 40px;
  }
}
.type-companies-wrapper ul li .left-li {
  width: 50%;
  display: inline-block;
  background: url("../images/companies-jafz-bg.png") no-repeat 0px 0px;
  padding: 28px 30px;
  margin: 0px 0px 0px -65px;
  position: relative;
  vertical-align: middle;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .type-companies-wrapper ul li .left-li {
    background: url("../images/companies-jafz-mob-bg.png") no-repeat 0px 0px;
    padding: 14px 10px 17px;
    margin: 0px 0px 0px -65px;
  }
}
@media (max-width: 1100px) {
  .type-companies-wrapper ul li .left-li {
    background-size: 100%;
    padding: 20px 15px;
  }
}
@media (max-width: 767.98px) {
  .type-companies-wrapper ul li .left-li {
    width: 100%;
    position: inherit;
    padding: 5px 15px;
    margin: 0px 0px 40px 0px;
  }
}
.type-companies-wrapper ul li .left-li h4 {
  display: flex;
}
.type-companies-wrapper ul li .left-li h4 i {
  margin: 0px 80px 0px 10px;
  padding: 0px 0px;
  font-family: "Poppins";
  font-size: 58px;
  color: #fff;
  display: inline-block;
  font-style: normal;
  font-weight: 400;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .type-companies-wrapper ul li .left-li h4 i {
    font-size: 46px;
    margin: 0px 30px 0px 10px;
  }
}
@media (max-width: 1100px) {
  .type-companies-wrapper ul li .left-li h4 i {
    font-size: 35px;
    margin: 0px 30px 0px 10px;
  }
}
@media (max-width: 767.98px) {
  .type-companies-wrapper ul li .left-li h4 i {
    font-size: 25px;
  }
}
.type-companies-wrapper ul li .left-li h4 span {
  margin: 0px;
  padding: 0px 0px;
  font-family: "Poppins";
  font-size: 29px;
  color: #fff;
  display: inline-block;
  font-weight: 300;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  /*left: 30%;*/
  left: 20%;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .type-companies-wrapper ul li .left-li h4 span {
    font-size: 23px;
  }
}
@media (max-width: 1100px) {
  .type-companies-wrapper ul li .left-li h4 span {
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .type-companies-wrapper ul li .left-li h4 span {
    font-size: 17px;
  }
}
.type-companies-wrapper ul li .right-li {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 767.98px) {
  .type-companies-wrapper ul li .right-li {
    width: 100%;
  }
}
.type-companies-wrapper ul li .right-li p {
  margin: 0px 0px;
  padding: 0px 0px;
  font-family: "Poppins";
  font-size: 22px;
  line-height: 33px;
  color: #242326;
  font-weight: 400;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .type-companies-wrapper ul li .right-li p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 1100px) {
  .type-companies-wrapper ul li .right-li p {
    font-size: 16px;
    line-height: 25px;
  }
}
@media (max-width: 767.98px) {
  .type-companies-wrapper ul li .right-li p {
    font-size: 14px;
    line-height: 21px;
  }
}

.what-offers-div {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0a0a0b+0,424243+100 */
  background: rgb(10, 10, 11); /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgb(10, 10, 11) 0%, rgb(66, 66, 67) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#0a0a0b", endColorstr="#424243",GradientType=0 ); /* IE6-9 */
  padding: 150px 0px;
  position: relative;
}
@media (max-width: 1100px) {
  .what-offers-div {
    padding: 100px 0px;
  }
}
.what-offers-div .container {
  max-width: 1400px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-offers-div .container {
    max-width: 1200px;
  }
}
@media (max-width: 1100px) {
  .what-offers-div .container {
    max-width: 95%;
  }
}
.what-offers-div .container h2 {
  margin: 0px 0px;
  padding: 0px 0px;
  font-size: 78px;
  font-family: "Tenor Sans";
  text-transform: uppercase;
  color: #fff;
  line-height: 75px;
  font-weight: 300;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
.what-offers-div .container h2 .col-md-6 {
  width: 100% !important;
  flex: inherit;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-offers-div .container h2 {
    font-size: 60px;
    line-height: 65px;
  }
}
@media (max-width: 1100px) {
  .what-offers-div .container h2 {
    font-size: 45px;
    line-height: 50px;
  }
}
@media (max-width: 1025px) {
  .what-offers-div .container h2 {
    position: inherit;
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .what-offers-div .container h2 {
    font-size: 32px;
    line-height: 37px;
    position: inherit;
    text-align: center;
  }
}
.what-offers-div .container ul {
  margin: 0px;
  padding: 0px;
  /*column-count: 3;*/
}
@media (max-width: 767.98px) {
  .what-offers-div .container ul {
    /* column-count:1;*/
  }
}
.what-offers-div .container ul li {
  margin: 0px 8px 15px 8px;
  padding: 15px 15px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  display: inline-block;
  width: 100%;
  /*float: left;*/
  min-height: 235px;
}
@media (max-width: 767.98px) {
  .what-offers-div .container ul li {
    margin: 0 0 30px 0;
    padding: 20px 15px;
    width: 100%;
    min-height: auto;
  }
}
.what-offers-div .container ul li img {
  margin: auto;
  width: 65px;
  height: 65px;
}
@media (max-width: 1600px) {
  .what-offers-div .container ul li img {
    width: 60px;
    width: 60px;
  }
}
.what-offers-div .container ul li span {
  margin: 10px 0 0 0;
  padding: 0px;
  font-size: 18px;
  font-family: "poppins";
  line-height: 27px;
  color: #0F0F10;
  display: inline-block;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .what-offers-div .container ul li span {
    font-size: 16px;
    line-height: 25px;
  }
}
@media (max-width: 767.98px) {
  .what-offers-div .container ul li span {
    font-size: 14px;
  }
  .what-offers-div .container ul li span br {
    display: none;
  }
}
.what-offers-div .container ul li:nth-child(3) {
  /*position: relative;*/
  top: 70px;
}
@media (max-width: 767.98px) {
  .what-offers-div .container ul li:nth-child(3) {
    position: inherit;
    top: 0;
  }
}
.what-offers-div .container ul li:nth-child(4) {
  /*position: relative;*/
  top: 70px;
}
@media (max-width: 767.98px) {
  .what-offers-div .container ul li:nth-child(4) {
    position: inherit;
    top: 0;
  }
}
.what-offers-div .container ul li:nth-child(5) {
  /*position: relative;*/
  top: 30px;
}
@media (max-width: 767.98px) {
  .what-offers-div .container ul li:nth-child(5) {
    position: inherit;
    top: 0;
  }
}
.what-offers-div .container ul li:nth-child(6) {
  /*position: relative;*/
  top: 30px;
}
@media (max-width: 767.98px) {
  .what-offers-div .container ul li:nth-child(6) {
    position: inherit;
    top: 0;
  }
}
.what-offers-div::after {
  content: "";
  position: absolute;
  background: url("../images/jafz-offers-bg.svg") no-repeat 0px 0px;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

.discover-more-about-jafz-wrapper {
  margin: 0px;
  padding: 250px 0px;
  border-bottom: 8px solid #B79662;
  background: url(../images/dicover-more-about-bg.png) no-repeat 0px 0px;
  background-size: 100%;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .discover-more-about-jafz-wrapper {
    padding: 100px 0px;
  }
}
@media (max-width: 1100px) {
  .discover-more-about-jafz-wrapper {
    padding: 60px 0px;
  }
}
@media (max-width: 767.98px) {
  .discover-more-about-jafz-wrapper {
    background: url("../images/dicover-more-about-bg-mobile.png") no-repeat left bottom;
    padding-bottom: 340px;
    padding-top: 100px;
  }
}
.discover-more-about-jafz-wrapper .container {
  max-width: 1500px;
}
.discover-more-about-jafz-wrapper .container h2 {
  margin: 0px;
  padding: 0px;
  font-family: "Tenor Sans";
  font-size: 78px;
  line-height: 75px;
  font-weight: 300;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .discover-more-about-jafz-wrapper .container h2 {
    font-size: 60px;
    line-height: 65px;
  }
}
@media (max-width: 1100px) {
  .discover-more-about-jafz-wrapper .container h2 {
    font-size: 45px;
    line-height: 50px;
  }
}
@media (max-width: 767.98px) {
  .discover-more-about-jafz-wrapper .container h2 {
    font-size: 32px;
    line-height: 36px;
  }
}
.discover-more-about-jafz-wrapper .container p {
  margin: 60px 0px 0px 0px;
  padding: 0px 0px;
  font-family: "Poppins";
  font-size: 22px;
  line-height: 38px;
  color: #0D0D0E;
  font-weight: 400;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .discover-more-about-jafz-wrapper .container p {
    font-size: 18px;
    line-height: 30px;
    margin: 40px 15% 0px 0px;
  }
}
@media (max-width: 1100px) {
  .discover-more-about-jafz-wrapper .container p {
    font-size: 16px;
    line-height: 30px;
    margin: 30px 0px 0px 0px;
  }
}
@media (max-width: 767.98px) {
  .discover-more-about-jafz-wrapper .container p {
    font-size: 16px;
    line-height: 25px;
  }
}
.discover-more-about-jafz-wrapper .container .freeconsultation-button {
  margin: 50px auto 0 0px;
  padding: 5px 35px;
  background: transparent;
  border-radius: 50px;
  display: inline-block;
  color: #B79662;
  text-transform: uppercase;
  font-family: "poppins";
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 500;
  border: 2px solid #B79662;
}
.discover-more-about-jafz-wrapper .container .freeconsultation-button:hover {
  background: #000;
}
@media (max-width: 1100px) {
  .discover-more-about-jafz-wrapper .container .freeconsultation-button {
    font-size: 16px;
  }
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .discover-more-about-jafz-wrapper .container .freeconsultation-button {
    font-size: 19px;
    padding: 5px 26px;
  }
}
@media (max-width: 767.98px) {
  .discover-more-about-jafz-wrapper .container .freeconsultation-button {
    font-size: 16px;
    padding: 8px 18px;
  }
}
.discover-more-about-jafz-wrapper .container .freeconsultation-button i {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 20px;
}

.services-provisions-div {
  margin: 0px;
  padding: 0px 0px 0px 10%;
  position: relative;
}
@media (max-width: 767.98px) {
  .services-provisions-div {
    padding: 0px 5% 0px 5%;
  }
}
.services-provisions-div h2 {
  margin: 0px 0px 100px 0px;
  padding: 0px 0px;
  line-height: 75px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .services-provisions-div h2 {
    margin: 0px 0px 40px 0px;
    line-height: 50px;
  }
}
@media (max-width: 1100px) {
  .services-provisions-div h2 {
    font-size: 45px;
    line-height: 50px;
  }
}
@media (max-width: 767.98px) {
  .services-provisions-div h2 {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 30px;
  }
}
.services-provisions-div .service-provisions {
  margin: 0px;
  padding: 10px 10px;
}
.services-provisions-div .service-provisions .owl-stage-outer {
  padding: 0px 0px 40px 20px;
}
@media (max-width: 767.98px) {
  .services-provisions-div .service-provisions .owl-stage-outer {
    padding: 0px 0px 40px 0px;
  }
}
.services-provisions-div .service-provisions .owl-stage-outer .provisions {
  background: #fff;
  border-radius: 20px;
  box-shadow: -1px 9px 18px -6px rgba(0, 0, 0, 0.6);
  text-align: center;
  padding: 25px 60px;
  min-height: 265px;
}
.services-provisions-div .service-provisions .owl-stage-outer .provisions .normal-img {
  width: 80px;
  height: 80px;
  margin: auto;
  display: block;
}
.services-provisions-div .service-provisions .owl-stage-outer .provisions .hover-img {
  width: 80px;
  height: 80px;
  margin: auto;
  display: none;
}
.services-provisions-div .service-provisions .owl-stage-outer .provisions span {
  margin: 20px 0px 0px 0px;
  padding: 0px 0px;
  font-family: "Poppins";
  font-size: 18px;
  display: block;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .services-provisions-div .service-provisions .owl-stage-outer .provisions span {
    font-weight: 600;
  }
}
.services-provisions-div .service-provisions .owl-nav {
  position: absolute;
  top: -186px;
  right: 10%;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .services-provisions-div .service-provisions .owl-nav {
    top: -140px;
  }
}
@media (max-width: 767.98px) {
  .services-provisions-div .service-provisions .owl-nav {
    position: inherit;
    top: inherit;
    right: inherit;
  }
}
.services-provisions-div .service-provisions .owl-nav .owl-next {
  background: url(../images/accordian-right-button.svg) no-repeat 0px 0px;
  height: 90px;
  width: 90px;
  background-size: 100%;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .services-provisions-div .service-provisions .owl-nav .owl-next {
    width: 65px;
    height: 65px;
  }
}
@media (max-width: 991.98px) {
  .services-provisions-div .service-provisions .owl-nav .owl-next {
    width: 60px;
    height: 60px;
  }
}
.services-provisions-div .service-provisions .owl-nav .owl-next:hover {
  background-color: #E7E7E8 !important;
  border-radius: 50%;
}
.services-provisions-div .service-provisions .owl-nav .owl-prev {
  background: url(../images/accordian-left-button.svg) no-repeat 0px 0px;
  height: 90px;
  width: 90px;
  margin-right: 15px;
  background-size: 100%;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .services-provisions-div .service-provisions .owl-nav .owl-prev {
    width: 65px;
    height: 65px;
  }
}
@media (max-width: 991.98px) {
  .services-provisions-div .service-provisions .owl-nav .owl-prev {
    width: 60px;
    height: 60px;
  }
}
.services-provisions-div .service-provisions .owl-nav .owl-prev:hover {
  background-color: #E7E7E8 !important;
  border-radius: 50%;
}
.services-provisions-div .service-provisions .owl-nav span {
  opacity: 0;
}

.provisions:hover {
  background: url("../images/carousal-hover.svg") -104px -250px no-repeat #B79662 !important;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .provisions:hover {
    background: url("../images/carousal-hover.svg") 0px 0px no-repeat #B79662 !important;
    background-size: 109% !important;
    background-position-x: -4px !important;
  }
}

.provisions:hover .normal-img {
  display: none !important;
}

.provisions:hover .hover-img {
  display: block !important;
}

.provisions:hover span {
  color: #fff !important;
}

.connect-icons-wrapper {
  margin: 0px auto;
  width: 340px;
  padding: 30px;
  background: #19181b;
  top: 18.5%;
  transform: translateX(340px);
  transition: 0.3s ease-in !important;
  height: 514px;
  z-index: 10000;
  overflow-y: auto;
}
@media (max-width: 767.98px) {
  .connect-icons-wrapper {
    width: 340px;
    transform: translateX(340px);
  }
}
.connect-icons-wrapper .close-button {
  position: absolute;
  top: 25px;
  right: 40px;
}
.connect-icons-wrapper h2, .connect-icons-wrapper-h2 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
  font-family: "Poppins";
	display: block;
}
.connect-icons-wrapper .floating-label-group {
  position: relative;
  margin-top: 7px;
}
.connect-icons-wrapper .floating-label-group input, .connect-icons-wrapper .floating-label-group textarea {
  background: none;
  border: 2px solid #4c4b4d;
  outline: none;
  border-radius: 0;
  resize: none;
  width: 100%;
  color: #fff;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 15px;
}
.connect-icons-wrapper .floating-label-group textarea {
  height: 95px;
}
.connect-icons-wrapper .floating-label-group input:focus, .connect-icons-wrapper .floating-label-group textarea:focus {
  border: 2px solid #B79662;
  background: none;
  outline: none;
  box-shadow: none;
  color: #fff;
}
.connect-icons-wrapper .floating-label-group .floating-label {
  font-size: 13px;
  color: #fff;
  pointer-events: none;
  transition:all 0.1s ease;
  font-family: "poppins";
  font-weight: 400;
  margin: 0 0 6px 13px;
}
.connect-icons-wrapper .floating-label-group input:focus ~ .floating-label,
.connect-icons-wrapper .floating-label-group input:not(:focus):valid ~ .floating-label,
.connect-icons-wrapper .floating-label-group textarea:focus ~ .floating-label {
  top: -15px;
  bottom: 0px;
  left: 10px;
  font-size: 11px;
  opacity: 1;
  color: #989898;
  font-size: 15px;
  color: #fff;
  background: #19181b;
  padding: 5px 10px;
  display: table;
  border-radius: 10px;
  font-weight: 400;
}
.connect-icons-wrapper .focus-label ~ .floating-label {
  top: -15px;
  background: #19181b;
  padding: 5px 10px;
  left: 8px;
}
.connect-icons-wrapper .web-button {
  display: table;
  margin: 0 auto;
}
.connect-icons-wrapper .enquire-button {
  margin: 0px;
  padding: 17px 25px;
  background: url(../images/form-button-normal.png) no-repeat 0px 0px;
  color: transparent !important;
  background-color: transparent !important;
  float: right;
  transition: 0.5s ease;
}
.connect-icons-wrapper .enquire-button:hover {
  background: url(../images/form-button.png) no-repeat 0px 0px;
}

.connect-icons-wrapper.show {
  transform: translateX(0px);
}

.activity-slider .owl-dots {
  margin: 0px auto;
  text-align: center;
}
.activity-slider .owl-dots .owl-dot span {
  margin: 0px 12px;
  padding: 0px;
  background: #ebebeb;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.activity-slider .owl-dots .active span {
  background: #b79662;
}
.activity-slider .owl-nav {
  opacity: 0;
}

.general-form.contact-page .web-button {
  background: url(../images/button-submit.svg) no-repeat 0px 0px !important;
}

.general-form input.wpcf7-form-control.has-spinner.wpcf7-submit {
  background-color: transparent !important;
  border: none;
  font-family: "Poppins";
  font-size: 20px;
  color: #B79662 !important;
  text-transform: uppercase;
  padding: 23px 0px 22px 0px;
  margin: 0;
  font-weight: 400;
  margin: auto;
  /* display: table;*/
  max-width: 260px;
}

.general-form input.wpcf7-form-control.has-spinner.wpcf7-submit:hover {
  background-color: transparent !important;
  border: none;
  font-family: "Poppins";
  font-size: 20px;
  color: #B79662 !important;
  text-transform: uppercase;
  padding: 23px 0px 22px 50px;
  margin: 0;
  font-weight: 400;
  margin: auto;
  /*display: table;*/
  max-width: 260px;
}

.general-form .web-button {
  margin: 0px;
  padding: 23px 60px 36px 0px !important;
  background: url(../images/button-bg.svg) no-repeat 0px 0px !important;
  font-family: "Poppins";
  font-size: 24px;
  color: #B79662;
  text-transform: uppercase;
  transition: 0.5s ease;
  display: inline-block;
  letter-spacing: 3px !important;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .general-form .web-button {
    padding: 10px 0px 36px 55px;
    font-size: 20px;
  }
}
.general-form .web-button:hover {
  background: url(../images/button-bg-hover.svg) no-repeat 0px 0px !important;
  padding: 23px 0px 36px 0px !important;
}

.connect-with-us-wrapper .wpcf7-form-control.has-spinner.wpcf7-submit {
  background-color: transparent !important;
  border: none;
  font-family: "Poppins";
  font-size: 24px;
  color: #B79662 !important;
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
  margin: 0;
  margin: auto;
  display: table;
  max-width: 260px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .connect-with-us-wrapper .wpcf7-form-control.has-spinner.wpcf7-submit {
    font-size: 20px;
  }
}

.connect-with-us-wrapper .wpcf7-form-control.has-spinner.wpcf7-submit:hover {
  background-color: transparent !important;
  border: none;
  font-family: "Poppins";
  font-size: 24px;
  color: #B79662 !important;
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
  padding: 18px 0px 36px 85px;
  margin: 0;
  margin: auto;
  display: table;
  max-width: 260px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .connect-with-us-wrapper .wpcf7-form-control.has-spinner.wpcf7-submit:hover {
    font-size: 20px;
  }
}

.connect-with-us-wrapper .web-button {
  margin: 20px auto 0 auto;
  padding: 18px 0px 36px 55px;
  background: url(../images/button-bg.svg) no-repeat 0px 0px;
  font-family: "Poppins";
  font-size: 24px;
  color: #B79662;
  text-transform: uppercase;
  transition: 0.5s ease;
  display: table;
  letter-spacing: 3px !important;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .connect-with-us-wrapper .web-button {
    padding: 20px 0px 36px 55px;
    font-size: 20px;
  }
}

@media (min-width: 360px) and (max-width: 1600px) {
  .freezone-tab-section label {
    width: 40px !important;
    height: 13px !important;
  }
  .freezone-tab-section .ball {
    width: 23px !important;
    height: 14px !important;
    top: -1px !important;
  }
  .freezone-tab-section .checkbox:checked + .label .ball {
    transform: translateX(25px) !important;
  }
}
button:not(:hover):not(:active):not(.has-background) {
  background-color: transparent !important;
}

.hamburger-inner {
  height: 2px !important;
}

.hamburger--slider .hamburger-inner::before {
  height: 2px !important;
}

.hamburger--slider .hamburger-inner::after {
  height: 2px !important;
  width: 50% !important;
}

.right.active .hamburger--slider .hamburger-inner::after {
  height: 2px !important;
  width: 100% !important;
}

.infographics-mobile .accordion-button::after {
  background: url(../images/infographics-mobile-close.png) !important;
  width: 34px !important;
}

a.freezone-div-1, a.freezone-div-2, a.freezone-div-3, a.freezone-div-4, a.freezone-div-5 {
  transition: 0.5s ease;
}

a.freezone-div-1:hover::after {
  transform: scale(1.1);
  transition: 0.5s ease;
}

a.freezone-div-2:hover::after {
  transform: scale(1.1);
  transition: 0.5s ease;
}

a.freezone-div-3:hover::after {
  transform: scale(1.1);
  transition: 0.5s ease;
}

a.freezone-div-4:hover::after {
  transform: scale(1.1);
  transition: 0.5s ease;
}

a.freezone-div-5:hover::after {
  transform: scale(1.1);
  transition: 0.5s ease;
}

#menu-primary-menu {
  display: block !important;
}

.accordian-wrapper .accordion-button:not(.collapsed) {
  color: #b79662 !important;
}
@media (max-width: 767.98px) {
  .accordian-wrapper .accordion-button:not(.collapsed) {
    font-weight: 400;
  }
}

.wpcf7-spinner {
  display: none !important;
}

@media (max-width: 767.98px) {
  .by-activity-tab {
    padding: 0 15px;
  }
}

@media (min-width: 1311px) and (max-width: 1300px) {
  .home-banner .main-menu ul li {
    font-size: 15px;
    margin: 0 7px;
  }
}
.content-repeater {
  margin: 80px 0;
  padding: 0px;
}
.content-repeater .repeater {
  margin: 0px 0px 50px 0px;
  padding: 0px 0px 20px 0px;
  /*border-bottom: 1px solid #b79662;*/
  position: relative;
}
.content-repeater .repeater::after {
  position: absolute;
  content: "";
  height: 4px;
  width: 30%;
  background: #b79662;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -24px;
}
.content-repeater .repeater h1 {
  margin: 0px;
  padding: 0px 0px 10px 0px;
  font-family: "Tenor Sans";
  font-size: 50px;
  font-weight: 300;
}
.content-repeater .repeater h2 {
  margin: 0px;
  padding: 0px 0px 10px 0px;
  font-family: "Tenor Sans";
  font-size: 46px;
  font-weight: 300;
  text-align: center;
}
.content-repeater .repeater h3 {
  margin: 0px;
  padding: 0px 0px 10px 0px;
  font-family: "Tenor Sans";
  font-size: 40px;
  font-weight: 300;
}
.content-repeater .repeater h4 {
  margin: 0px;
  padding: 0px 0px 10px 0px;
  font-family: "Tenor Sans";
  font-size: 35px;
  font-weight: 300;
}
.content-repeater .repeater p {
  margin: 10px 0px 10px 0px;
  padding: 0px;
  font-family: "Poppins" !important;
  font-size: 18px;
  color: #000;
  font-weight: 300;
  line-height: 27px;
}
.content-repeater .repeater ul {
  margin: 10px 0;
  padding: 0px 0px 0px 20px;
}
.content-repeater .repeater ul li {
  margin: 8px 0px;
  padding: 0px 0px 0px 0px;
  font-family: "Poppins" !important;
  font-size: 18px;
  list-style: disc;
}
.content-repeater .repeater a {
  color: #b79662;
}

.freeconsultation-tab-section.offshore {
  background: transparent !important;
  margin-top: -235px;
}
@media (max-width: 991.98px) {
  .freeconsultation-tab-section.offshore {
    background-color: #1c1e22 !important;
    padding: 50px 0px;
    margin-top: -1px;
  }
}

.wpcf7 form.invalid .wpcf7-response-output {
  background: red;
  color: #fff;
  text-align: center;
  border: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #46b450;
  color: #fff;
  border: none;
  text-align: center;
}

@media (min-width: 820px) and (max-width: 991px) {
  .legal-freelance-box .tab-content {
    display: block;
    width: 55%;
  }
  .legal-freelance-wrap.eligibility-wrap.min-height-wrap {
    min-height: 630px;
  }
  .legal-freelance-wrap.eligibility-wrap.min-height-wrap img.d-lg-none.d-block {
    /*  position: absolute;*/
    bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1110px) {
  .footer-wrapper .col-md-3 {
    width: 100% !important;
  }
  .footer-wrapper .footer-logo {
    margin-top: 10%;
  }
  .footer-wrapper .col-md-9 {
    width: 100% !important;
  }
  .footer-wrapper .bottom-footer a, .footer-wrapper .bottom-footer p {
    font-size: 12px;
  }
}
.error-section {
  padding: 10% 0;
  text-align: center;
}
.error-section h2 {
  font-family: "Tenor Sans";
  font-size: 60px;
  text-transform: uppercase;
  font-weight: bold;
}
.error-section h2 span {
  color: #B79662;
}
.error-section p {
  color: #B79662;
}

.offshore-slider .activity-content {
  opacity: 1 !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  text-align: center;
}

.offshore-slider .activity-content:hover {
  opacity: 1 !important;
  background-color: rgba(0, 0, 0, 0.7) !important;
  text-align: center;
}

.offshore-slider .activity-content h3 {
  color: #ffffff !important;
}

.comment-form .error {
  color: red;
}

h3.f-menu-h3.mobile.active {
  color: #b79662;
}

.offshore-slider .owl-dots {
  margin: auto;
  text-align: center;
}

.offshore-slider .owl-dots .owl-dot span {
  background: white;
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 50%;
  margin: 0px 8px;
}

.offshore-slider .owl-dots .owl-dot.active span {
  background: #B79662;
}

.freeconsultation-tab-section .freeconsultation-div span {
  padding: 0px 10px;
}

img.slider-img.stick {
  position: fixed;
  right: 19%;
  top: -57%;
  width: 38%;
  transition: 0.1s ease;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  img.slider-img.stick {
    top: -40%;
    right: inherit;
    width: 36%;
  }
}

@media (min-width: 768px) and (max-width: 1050px) {
  .what-offers-div .container h2 {
    position: inherit;
    margin-bottom: 50px;
    text-align: center;
  }
  .what-offers-div .col-md-6 {
    flex: inherit !important;
    width: 100% !important;
  }
}
.top-line.single-detail {
  top: 20px !important;
}
@media (max-width: 991.98px) {
  .top-line.single-detail {
    top: -25px !important;
  }
}

iframe {
  border-radius: 20px;
}

.modal {
  z-index: 106000;
}

.freeconsultation-button i {
  display: inline-block !important;
}

.drap-select a.right-link, .drap-select a.left-link {
  pointer-events: none;
}

.wprmenu_bar.wpr_custom_menu.normalslide.right.active .hamburger-inner {
  width: 18px !important;
}

.freeconsultation-button i {
  display: inline-block;
}

li.current-menu-ancestor a {
  color: #b79662 !important;
}

.sub-menu li.menu-item-object-page a {
  color: white !important;
}

li.menu-item.menu-item-type-post_type.menu-item-object-page.current-menu-item.page_item.current_page_item a {
  color: #b79662;
  background: transparent !important;
  /*border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important;*/
  border-radius: 15px !important;
}

.sub-menu li a {
  color: #fff !important;
}

.sub-menu li.menu-item.menu-item-type-post_type.menu-item-object-page.current-menu-item.page_item.current_page_item a {
  /*color: #b79662 !important;*/
  color: #fff !important;
  background: #9B7943 !important;
  /* border-bottom-left-radius: 15px !important;
   border-bottom-right-radius: 15px !important;
   border-top-right-radius: 15px !important;*/
  border-radius: 15px !important;
}

@media (min-width: 360px) and (max-width: 670px) {
  #respond .comment-form p.comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
  }
  #respond .comment-form p.comment-form-cookies-consent input {
    margin: 6px 0px 0px 0px;
  }
}
#pagination-container li span {
  border: none;
  font-family: "Poppins";
  font-size: 18px;
  background-color: transparent !important;
  color: #C7C7C7;
  padding: 0 30px;
}

#pagination-container li a {
  font-size: 18px !important;
}

#pagination-container li.active span {
  background-color: transparent !important;
  border-color: transparent !important;
  color: #B79662 !important;
  width: 80px;
  position: relative;
  font-size: 18px;
}

#pagination-container li.active span:after {
  content: "";
  display: block;
  clear: both;
  width: 25px;
  position: absolute;
  right: -4px;
  height: 1px;
  background: #B79662;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media (min-width: 768px) and (max-width: 990px) {
  .discover-more-about-jafz-wrapper {
    background: url(../images/dicover-more-about-bg.png) no-repeat 0px bottom;
    background-size: cover;
    background-position: -138px 0px;
  }
  .discover-more-about-jafz-wrapper .container .freeconsultation-button {
    margin: 50px auto 0 0px;
    padding: 15px 20px;
  }
  .services-provisions-div .service-provisions .owl-nav {
    position: inherit;
    right: 0;
    top: 0;
  }
}
.infographics-mobile br {
  display: none;
}

@media (min-width: 360px) and (max-width: 1025px) {
  ul.demo-accordion.accordionjs .acc_content ul li {
    margin-bottom: 30px;
    padding: 0px;
    display: flex;
    align-items: center;
  }
  ul.demo-accordion.accordionjs .acc_content ul li i {
    display: inline-block;
    width: auto;
    margin-right: 3%;
  }
  ul.demo-accordion.accordionjs .acc_content ul li span {
    margin-bottom: 0;
  }
}
.shooting-line img.desktop-top-line {
  display: block !important;
}
@media (max-width: 991.98px) {
  .shooting-line img.desktop-top-line {
    display: none !important;
  }
}

.shooting-line img.mobile-top-line {
  display: none !important;
}
@media (max-width: 991.98px) {
  .shooting-line img.mobile-top-line {
    display: block !important;
  }
}

@media (min-width: 1026px) and (max-width: 1099px) {
  img.desktop-top-line.aos-init.aos-animate {
    height: 160px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home-banner .counter-paragraph {
    top: 156px;
  }
  .home-banner .counter-paragraph.commit {
    bottom: 0 !important;
    top: auto;
  }
  .counter-paragraph.shooting-line.our-culture-line {
    top: 260px;
  }
}
@media (min-width: 1025px) and (max-width: 1150px) {
  .home-banner h1 {
    margin-top: 50px;
    font-size: 75px !important;
    line-height: 85px !important;
  }
  .home-banner .counter-paragraph p {
    font-size: 16px;
    line-height: 28px;
  }
  .home-banner .counter-paragraph {
    margin: 100px 0 0 0;
  }
  .home-banner .counter-paragraph .counter-wrapper .count .counter {
    font-size: 35px;
  }
}
@media (min-width: 1151px) and (max-width: 1250px) {
  .home-banner .counter-paragraph {
    margin: 90px 0 0 0;
  }
  .home-banner .counter-paragraph .counter-wrapper .count .counter {
    font-size: 40px;
  }
}
.commitemnts-to.black-gradient.overlay-grad {
  padding-top: 5%;
}

.col-md-12.text-center.about-head h1 {
  margin-top: 7%;
}
@media (max-width: 1600px) {
  .col-md-12.text-center.about-head h1 {
    font-size: 60px !important;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .col-md-12.text-center.about-head h1 {
    margin-top: 60%;
  }
}
@media (max-width: 767.98px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap h4 {
    margin-top: 50px;
  }
}

/*.freeconsultation-tab-section .freeconsultation-div .col-md-3:last-child img {
    width: 47px;
}*/
@media (min-width: 1450px) and (max-width: 1600px) {
  img.slider-img.stick {
    top: -48%;
    right: inherit;
    width: 31%;
  }
  .pagenation-div.stick {
    position: fixed !important;
    right: 11.5% !important;
  }
}
@media (min-width: 360px) and (max-width: 767px) {
  .trusted-advise-wrapper.trusted-advise-inner .heading-section {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .type-companies-wrapper ul li .left-li {
    background-size: 100%;
    padding: 0px 15px;
    height: 75px !important;
    position: relative !important;
  }
  .type-companies-wrapper ul li .left-li h4 {
    display: flex;
    position: absolute !important;
    transform: translateY(-50%) !important;
    top: 50%;
    width: 100%;
  }
  .type-companies-wrapper ul li .left-li h4 span {
    left: 22%;
  }
  .type-companies-wrapper ul li .left-li h4 span {
    font-size: 14px;
    top: 47%;
  }
}
@media (max-width: 1005px) {
  .freeconsultation-tab-section .freezone-tab-section .activity-div .activity-content h3 {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .type-companies-wrapper ul li .left-li {
    background-size: 100%;
    padding: 0px 15px;
    height: 67px !important;
    position: relative !important;
  }
  .type-companies-wrapper ul li .left-li h4 span {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .type-companies-wrapper ul li .left-li {
    background-size: 100%;
    padding: 0px 15px;
    height: 140px !important;
    position: relative !important;
  }
  .type-companies-wrapper ul li .left-li h4 {
    display: flex;
    position: absolute !important;
    transform: translateY(-50%) !important;
    top: 50% !important;
    width: 100% !important;
  }
  .type-companies-wrapper ul li .left-li h4 span {
    left: 20%;
  }
  h3.text-uppercase.aos-init.aos-animate {
    padding: 30px 0 0;
  }
  .type-companies-wrapper ul li .left-li h4 span {
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .type-companies-wrapper ul li .left-li {
    background-size: 100%;
    padding: 0px 15px;
    height: 110px !important;
    position: relative !important;
  }
  .nav.nav-pills.flex-column {
    display: inline-block !important;
  }
  #experienceTabContent .tab-pane .choices label {
    width: 100px;
  }
}
@media (max-width: 500px) {
  .type-companies-wrapper ul li .left-li {
    background-size: 100%;
    padding: 0px 15px;
    height: 86px !important;
    position: relative !important;
  }
}
@media (max-width: 400px) {
  .type-companies-wrapper ul li .left-li {
    background-size: 100%;
    padding: 0px 15px;
    height: 60px !important;
    position: relative !important;
    top: -35px;
    margin: 0;
  }
}
h2.h2-title-section.aos-init.aos-animate.detail-page, label.h2-title-section.aos-init.aos-animate.detail-page {
  padding-top: 70px;
	display: block;
}

@media (max-width: 1200px) {
  h2.h2-title-section.aos-init.aos-animate.detail-page, label.h2-title-section.aos-init.aos-animate.detail-page {
    padding-top: 0px;
  }
}
@media (max-width: 1100px) {
  .home-banner .what-is-freezone i {
    margin: 0px 0px 0px 18px;
    display: inline-block;
    vertical-align: middle !important;
  }
}
@media (min-width: 1100px) and (max-width: 1180px) {
  .freeconsultation-tab-section {
    background: linear-gradient(to bottom, #141416 0%, #424243 100%);
    margin-top: -60px;
  }
}
.crosslinks-wraper .col-md-6.mb-3 .crosslink-box {
  border-bottom-left-radius: 47px;
  border-top-right-radius: 47px;
}

.crosslinks-wraper .col-md-6.mb-3 .crosslink-box .img-fluid {
  border-bottom-left-radius: 47px;
  border-top-right-radius: 47px;
  box-shadow: 0px 10px 5px 0px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0px 10px 5px 0px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 10px 5px 0px rgba(0, 0, 0, 0.07);
}

.crosslinks-wraper .col-md-6.mb-3:last-child .crosslink-box {
  border-bottom-right-radius: 47px;
  border-top-left-radius: 47px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 0px;
}

.crosslinks-wraper .col-md-6.mb-3:last-child .crosslink-box .img-fluid {
  border-bottom-right-radius: 47px;
  border-top-left-radius: 47px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 0px;
  box-shadow: 0px 10px 5px 0px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0px 10px 5px 0px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 10px 5px 0px rgba(0, 0, 0, 0.07);
}

@media (min-width: 1300px) and (max-width: 1400px) {
  .home-banner .scroll-down {
    left: 0;
    right: 0;
    margin: auto;
    bottom: 30%;
  }
}
.freezone-tab-section .container {
  max-width: 1500px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .freezone-tab-section .container {
    max-width: 1100px;
  }
}

@media (max-width: 1310px) {
  .sub-menu li.menu-item.menu-item-type-post_type.menu-item-object-page.current-menu-item.page_item.current_page_item a {
    background: transparent !important;
    border-radius: 0 !important;
  }
}

.legal-freelance-box .col-lg-7.offset-lg-5 {
  padding-right: 10%;
}
@media (max-width: 1600px) {
  .legal-freelance-box .col-lg-7.offset-lg-5 {
    padding-right: 4%;
  }
}
@media (max-width: 1100px) {
  .legal-freelance-box .col-lg-7.offset-lg-5 {
    padding-right: auto;
  }
}

button.close:hover span {
  opacity: 0.5 !important;
}

@media (min-width: 360px) and (max-width: 991px) {
  .freezone-tab-section h2 br {
    display: none !important;
  }
  .block-three-book.roots-of-text {
    padding-bottom: 60px;
  }
}
@media (min-width: 768px) and (max-width: 1100px) {
  .freeconsultation-tab-section .freeconsultation-div span {
    text-align: left;
    line-height: 22px;
  }
  .freeconsultation-tab-section .freeconsultation-div i {
    vertical-align: middle;
    max-width: 50px;
    width: 50px;
    flex: 0 0 50px;
  }
}
@media (min-width: 360px) and (max-width: 767px) {
  .inner-counter .counter-wrapper p br {
    display: none;
  }
  .inner-counter .counter-wrapper .count-bx i {
    display: none;
  }
  .inner-counter .counter-wrapper .count .counter {
    margin-bottom: 0;
  }
  .why-freedom-incorporation .col-md-4 {
    display: flex;
    margin-bottom: 40px;
  }
  .freezone-incorporation-div .why-freedom-incorporation i {
    margin-right: 20px;
    width: 20%;
    vertical-align: top;
    flex: 0 0 20%;
  }
  .freezone-incorporation-div .why-freedom-incorporation span {
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 22px;
    width: 70%;
    vertical-align: bottom;
    flex: 0 0 70%;
  }
  .freezone-incorporation-div .why-freedom-incorporation i img {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767.98px) {
  .services-provisions-div .service-provisions {
    margin: 0px;
    padding: 0;
  }
}

.three-coloum-content img {
  width: 103px;
  height: 84px;
}
@media (max-width: 1600px) {
  .three-coloum-content img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 767.98px) {
  .three-coloum-content img {
    width: 45px;
    height: 45px;
  }
}

ul.demo-accordion.accordionjs .acc_content ul li img {
  width: 60px;
}

@media (min-width: 1000px) and (max-width: 1200px) {
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap h4 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 15px;
  }
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap p {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 15px;
  }
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap h5 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 15px;
  }
  .trusted-advise-wrapper.trusted-advise-inner .legal-freelance-wrap.why-business-wrap .button-icon a {
    font-size: 12px;
    line-height: 19px;
    margin-bottom: 8px;
    min-height: 95px;
  }
}
.margin-right {
  padding-right: 15%;
}
@media (max-width: 991.98px) {
  .margin-right {
    padding-right: 0;
  }
}

.overlay-sec {
  height: 90%;
}

.grecaptcha-badge {
  display: none !important;
}

h2.offshore-heading.aos-init.aos-animate {
  margin-top: 11%;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  h2.offshore-heading.aos-init.aos-animate {
    margin-top: 7%;
  }
}
@media (max-width: 1025px) {
  h2.offshore-heading.aos-init.aos-animate {
    margin-top: 10%;
  }
}
@media (max-width: 767.98px) {
  h2.offshore-heading.aos-init.aos-animate {
    margin-top: 60%;
  }
}

a.page-link.next:hover img {
  opacity: 0.5;
}

.footer-wrapper .phone-email a:hover {
  color: #d7b278;
}

header .header-right ul.left-ul li a:hover {
  color: #d7b278;
}

@media (min-width: 768px) and (max-width: 1020px) {
  .book-banner .shooting-line .top-line {
    top: 180px !important;
  }
}
@media (min-width: 1026px) and (max-width: 1200px) {
  .footer-wrapper .phone-email a {
    font-size: 20px;
    line-height: 33px;
  }
  .footer-wrapper .address-section li i {
    display: inline-block;
    margin-right: 14px;
  }
  .footer-wrapper .footer-menu-section li a {
    font-size: 13px;
  }
  .footer-wrapper .address-section li {
    font-size: 13px;
  }
}
.contact-page .wpcf7-not-valid-tip {
  display: inline-block;
}

.bottom-line.visa-page {
  display: none !important;
}
@media (max-width: 767.98px) {
  .bottom-line.visa-page {
    display: block !important;
  }
}

.drap-image-div {
  display: none;
}

@media (min-width: 360px) and (max-width: 1100px) {
  .drap-image-div {
    width: 150px;
    height: 100px;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    display: block;
  }
}
@media (min-width: 640px) and (max-width: 740px) {
  .type-companies-wrapper ul li .left-li {
    padding: 0px 15px;
    height: 65px !important;
    position: relative !important;
    background-size: contain;
    width: 500px;
  }
}
@media (min-width: 768px) and (max-width: 1100px) {
  .freezone-detail-banner .col-md-2.aos-init.aos-animate {
    padding: 0;
  }
}
@media (min-width: 1100px) and (max-width: 1600px) {
  #what_is_freezone_tab {
    background-size: contain !important;
  }
}

.what-offers-div .container ul .col-md-4:nth-child(2) {
  margin: 65px 0px 0px 0px;
}
@media (max-width: 767.98px) {
  .what-offers-div .container ul .col-md-4:nth-child(2) {
    margin: 0px;
  }
}

.what-offers-div .container ul .col-md-4:nth-child(6) {
  margin: -35px 0px 0px 0px;
}
@media (max-width: 767.98px) {
  .what-offers-div .container ul .col-md-4:nth-child(6) {
    margin: 0px;
  }
}

.what-offers-div .container ul .col-md-4:nth-child(4) {
  margin: -40px 0px 0px 0px;
}
@media (max-width: 767.98px) {
  .what-offers-div .container ul .col-md-4:nth-child(4) {
    margin: 0px;
  }
}

.what-offers-div .container ul .col-md-4:nth-child(5) {
  margin: 25px 0px 0px 0px;
}
@media (max-width: 767.98px) {
  .what-offers-div .container ul .col-md-4:nth-child(5) {
    margin: 0px;
  }
}

.main-menu ul li {
  position: relative;
}

li.menu-item.menu-item-type-post_type.menu-item-object-page.current-menu-item.page_item.current_page_item::before {
  position: absolute;
  content: "";
  height: 6px;
  width: 100%;
  background: #b79662;
  border-radius: 0px 0px 5px 5px;
  top: -60px;
}

li.current-menu-ancestor::before {
  position: absolute;
  content: "";
  height: 6px;
  width: 100%;
  background: #b79662;
  border-radius: 0px 0px 5px 5px;
  top: -60px;
}

.sub-menu li.menu-item.menu-item-type-post_type.menu-item-object-page.current-menu-item.page_item.current_page_item::before {
  display: none;
}

body {
  overflow-x: hidden;
}

.position-relative.freezone-overlay {
  position: relative;
}

.position-relative.freezone-overlay::after {
  content: "";
  position: absolute;
  background: #0e0e0e;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.4;
}

ul#menu-resource li::before {
  display: none;
}

.heading-section.need-height {
  padding-bottom: 240px;
}

.heading-section.need-height h2.h2-title-section.aos-init.aos-animate.detail-page, .heading-section.need-height label.h2-title-section.aos-init.aos-animate.detail-page {
  padding-top: 150px;
}

a.page-link.next img {
  width: 30px;
}

a.page-link.next {
  top: 16px !important;
}

.row.icons-con .col-md-4 {
  margin-bottom: 20px;
}

div#emc-score i {
  font-style: inherit;
}

a.chatnewicon {
  bottom: 0;
  position: fixed;
  margin-left: 80%;
  z-index: 1000;
  max-width: 250px;
  height: 128px;
  /* background: red !important; */
}

a.chatnewicon img {
  width: 250px;
  height: 200px;
}

@media (min-width: 1700px) and (max-width: 2900px) {
  a.chatnewicon {
    margin-left: 86%;
  }
}
@media (min-width: 360px) and (max-width: 1310px) {
  li.current-menu-ancestor::before {
    display: none;
  }
  li.menu-item.menu-item-type-post_type.menu-item-object-page.current-menu-item.page_item.current_page_item::before {
    display: none;
  }
  #wprmenu_menu_ul li::before {
    display: none !important;
  }
}
@media (max-width: 1025px) {
  .counter-paragraph.shooting-line.our-culture-line {
    bottom: 0;
  }
}
@media (max-height: 600px) {
  .connect-icons-wrapper {
    height: 300px;
  }
}
.shooting-line {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.shooting-line .top-line {
  margin: auto;
  display: table;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .shooting-line .top-line img {
    height: 150px;
    /*display: table !important;*/
  }
}

p {
  font-family: "Poppins" !important;
  font-weight: 400;
}

.overlay-grad {
  position: relative;
}
.overlay-grad::after {
  background: url(../images/message-pattern.png) bottom no-repeat;
  position: absolute;
  z-index: 1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: -354px;
  opacity: 0.4;
}
@media (max-width: 991.98px) {
  .overlay-grad::after {
    background: url(../images/mobile-commit.png) no-repeat;
    width: 660px;
    top: -510px;
    background-size: contain;
    bottom: auto;
    transform: scale(1.2);
  }
}

.margin-to-right {
  margin-left: auto;
  position: relative;
}

.black-gradient {
  background-color: rgba(0, 0, 0, 0.95);
  background-image: linear-gradient(#0F0F10, #424243);
}
@media (max-width: 991.98px) {
  .black-gradient {
    margin-top: -1px;
  }
}
.black-gradient .accordion-body p {
  font-size: 18px;
  margin-bottom: 0;
}
@media (max-width: 1600px) {
  .black-gradient .accordion-body p {
    font-size: 14px;
  }
}
.black-gradient .accordion-item {
  background-color: transparent;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: solid 2px #C5A36E;
  border-radius: 0;
}
@media (max-width: 1600px) {
  .black-gradient .accordion-item {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 991.98px) {
  .black-gradient .accordion-item {
    margin-left: 65px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.black-gradient .accordion-button:not(.collapsed) {
  background-color: transparent;
}
.black-gradient .accordion-button {
  background-color: transparent;
  color: #fff;
  padding: 0;
}
.black-gradient .accordion-body {
  padding-left: 0;
}
@media (max-width: 991.98px) {
  .black-gradient .accordion-body {
    padding-bottom: 0;
  }
}
@media (max-width: 991.98px) {
  .black-gradient .accordion-body p {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 0;
    padding-right: 15px;
  }
}
.black-gradient h2.commit {
  color: #B69562;
  font-size: 76px;
  line-height: 101px;
  font-family: "Tenor Sans";
  font-weight: 400;
}
@media (max-width: 1600px) {
  .black-gradient h2.commit {
    font-size: 56px;
    line-height: 65px;
  }
}
@media (max-width: 991.98px) {
  .black-gradient h2.commit {
    font-weight: 400;
    font-size: 32px;
    line-height: 34px;
    padding-top: 0;
    padding-bottom: 20px;
  }
}
.black-gradient p {
  font-weight: 400;
  line-height: 38px;
  color: #fff;
  opacity: 0.78;
}
@media (max-width: 1600px) {
  .black-gradient p {
    line-height: 30px;
  }
}
@media (max-width: 991.98px) {
  .black-gradient p {
    font-size: 16px;
    line-height: 25px;
  }
}

.left-margin {
  position: absolute;
  left: -102px;
  width: 70px;
}
@media (max-width: 1600px) {
  .left-margin {
    left: -90px;
    max-width: 57px;
  }
}
@media (max-width: 991.98px) {
  .left-margin {
    left: -75px;
  }
}

.accordion-golden {
  z-index: 99;
  position: relative;
  padding-bottom: 130px;
}
@media (max-width: 991.98px) {
  .accordion-golden {
    padding-bottom: 10px;
  }
}
.accordion-golden .accordion-button {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 20px;
  line-height: 36px;
}
@media (min-width: 1800px) {
  .accordion-golden .accordion-button {
    font-size: 26px;
    line-height: 46px;
  }
}
@media (max-width: 991.98px) {
  .accordion-golden .accordion-button {
    font-size: 16px;
  }
}
.accordion-golden .accordion-button::after {
  background-image: url(../images/plus-icon-commitment.svg);
  width: 50px;
  height: 50px;
  background-size: auto;
  width: 50px;
  height: 50px;
}
@media (max-width: 1600px) {
  .accordion-golden .accordion-button::after {
    width: 38px;
    height: 40px;
    background-size: contain;
  }
}
@media (max-width: 991.98px) {
  .accordion-golden .accordion-button::after {
    width: 28px;
    height: 30px;
    background-size: contain;
  }
}
.accordion-golden .accordion-button:not(.collapsed)::after {
  background-image: url(../images/minus-icon-commitment.svg);
  width: 50px;
  height: 50px;
  background-size: auto;
}
@media (max-width: 1600px) {
  .accordion-golden .accordion-button:not(.collapsed)::after {
    width: 38px;
    height: 40px;
    background-size: contain;
  }
}
@media (max-width: 991.98px) {
  .accordion-golden .accordion-button:not(.collapsed)::after {
    width: 28px;
    height: 30px;
    background-size: contain;
  }
}

.golden-content {
  position: relative;
  z-index: 1;
}
.golden-content h2 {
  font-family: "Tenor Sans";
  font-size: 76px;
  font-weight: 400;
  line-height: 89px;
  color: #1F1F22;
}
@media (max-width: 1600px) {
  .golden-content h2 {
    font-size: 56px;
    line-height: 70px;
  }
}
@media (max-width: 991.98px) {
  .golden-content h2 {
    margin-bottom: 30px;
  }
}
@media (max-width: 991.98px) {
  .golden-content .client-title {
    font-size: 32px;
    line-height: 32px;
  }
}
@media (max-width: 991.98px) {
  .golden-content p {
    font-size: 16px;
  }
}

.white-client-accordion {
  position: relative;
  z-index: 1;
  padding-bottom: 150px;
}
@media (max-width: 991.98px) {
  .white-client-accordion {
    padding-bottom: 10px;
  }
}
.white-client-accordion .accordion-item {
  border: none;
  border-bottom: solid 2px #D4D4D4;
  margin-left: 75px;
  background-color: transparent;
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 0;
}
@media (max-width: 1600px) {
  .white-client-accordion .accordion-item {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 991.98px) {
  .white-client-accordion .accordion-item {
    margin-left: 66px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.white-client-accordion .accordion-item .accordion-body {
  padding-left: 0;
}
@media (max-width: 991.98px) {
  .white-client-accordion .accordion-item .accordion-body {
    padding-left: 0;
    padding-bottom: 0;
  }
  .white-client-accordion .accordion-item .accordion-body p {
    margin-bottom: 0;
    padding-right: 15px;
  }
}
.white-client-accordion .accordion-item p {
  padding-right: 20px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .white-client-accordion .accordion-item p {
    font-size: 14px;
  }
}
.white-client-accordion .accordion-button {
  background-color: transparent;
  font-weight: 500;
  font-family: "Poppins";
  font-size: 26px;
  line-height: 46px;
  padding-right: 0;
  padding: 0;
}
@media (max-width: 1600px) {
  .white-client-accordion .accordion-button {
    font-size: 20px;
  }
}
@media (max-width: 991.98px) {
  .white-client-accordion .accordion-button {
    font-size: 16px;
  }
}
.white-client-accordion .accordion-button:not(.collapsed) {
  color: #000000;
  background-color: transparent;
  box-shadow: none;
}
.white-client-accordion .accordion-button::after {
  background-image: url(../images/golden-plus-icon-commitment.svg);
  width: 50px;
  height: 50px;
  background-size: auto;
  width: 50px;
  height: 50px;
}
@media (max-width: 1600px) {
  .white-client-accordion .accordion-button::after {
    width: 38px;
    height: 40px;
    background-size: contain;
  }
}
@media (max-width: 991.98px) {
  .white-client-accordion .accordion-button::after {
    width: 28px;
    height: 30px;
    background-size: contain;
  }
}
.white-client-accordion .accordion-button:not(.collapsed)::after {
  background-image: url(../images/golden-minus-icon-commitment.svg);
  width: 50px;
  height: 50px;
  background-size: auto;
}
@media (max-width: 1600px) {
  .white-client-accordion .accordion-button:not(.collapsed)::after {
    width: 38px;
    height: 40px;
    background-size: contain;
  }
}
@media (max-width: 991.98px) {
  .white-client-accordion .accordion-button:not(.collapsed)::after {
    width: 28px;
    height: 30px;
    background-size: contain;
  }
}

.golden-border {
  border-bottom: 8px solid #B79662;
  margin-bottom: 100px;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .golden-border {
    margin-bottom: 80px;
  }
}
@media (max-width: 991.98px) {
  .golden-border {
    padding-top: 80px;
    margin-bottom: 70px;
  }
}

@media (max-width: 991.98px) {
  .bottom-commit {
    position: static !important;
  }
}
.bottom-commit img {
  max-width: 1340px;
  margin-left: auto;
}
@media (min-width: 1800px) {
  .bottom-commit img {
    max-width: 1563px;
  }
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .bottom-commit img {
    max-width: 1000px;
  }
}
@media (max-width: 991.98px) {
  .bottom-commit img {
    max-width: 100%;
    margin-left: 0;
  }
}

.commitment-banner h1 {
  font-family: "Kiona";
  text-transform: uppercase;
  text-align: center;
  font-size: 90px;
  font-weight: 400;
  color: #FFF;
  position: absolute;
  left: 0;
  right: 0;
  top: 27%;
  line-height: 100px;
}
@media (min-width: 1800px) {
  .commitment-banner h1 {
    top: 23%;
    font-size: 130px;
    line-height: 115px;
  }
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .commitment-banner h1 {
    top: 20%;
  }
}
@media (max-width: 991.98px) {
  .commitment-banner h1 {
    font-size: 40px;
    line-height: 56px;
    top: 30%;
  }
}

.drop-down-arrow-commit {
  position: absolute;
  bottom: -1px;
  width: 100%;
}
.drop-down-arrow-commit img {
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .drop-down-arrow-commit img {
    max-width: 168px;
  }
}

@media (max-width: 991.98px) {
  .position-in-responsive {
    position: static !important;
    width: 100%;
  }
}

button:focus, button:focus:not(:focus-visible) {
  outline: none !important;
  box-shadow: none;
}

.commitemnts-to .container {
  padding-left: 30px;
  padding-right: 30px;
  /*margin-bottom: 30px;*/
}

.ball-structure-wrap {
  position: relative;
  z-index: 99;
  padding-bottom: 80px;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .ball-structure-wrap {
    padding-bottom: 50px;
  }
}

.image-ball-culture {
  width: 660px;
  margin: 200px auto;
}
@media (max-width: 1600px) {
  .image-ball-culture {
    width: 450px;
  }
}

.cult-image {
  cursor: pointer;
  width: 132px;
}
@media (max-width: 1600px) {
  .cult-image {
    width: 80px;
  }
}
.cult-image img {
  max-width: 132px;
}
@media (max-width: 1600px) {
  .cult-image img {
    max-width: 80px;
  }
}

.cult-title h4 {
  color: #fff;
  font-family: "Poppins";
  font-size: 26px;
  line-height: 38px;
  font-weight: 400;
  width: 230px;
  padding-left: 20px;
  cursor: pointer;
}
@media (max-width: 1600px) {
  .cult-title h4 {
    font-size: 18px;
    line-height: 23px;
    bottom: 97px;
    right: -212px;
  }
}

.cult-content {
  width: 450px;
  background-color: #B79662;
  color: #fff;
  position: absolute;
  border-radius: 15px;
  padding: 30px;
  bottom: -220px;
  z-index: 1;
  /*left: -20px;*/
  left: 0;
  opacity: 0;
  z-index: -1;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1600px) {
  .cult-content {
    width: 340px;
    bottom: -192px;
  }
}
.cult-content:after {
  position: absolute;
  top: -10px;
  /* left: 19%;*/
  left: 13%;
  margin-left: -10px;
  content: "";
  display: block;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #B79662;
}
.cult-content p {
  line-height: 34px;
}
@media (max-width: 1600px) {
  .cult-content p {
    line-height: 22px;
    font-size: 17px;
    font-weight: 300;
  }
}

.cult-wrapper {
  width: 306px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
@media (max-width: 1600px) {
  .cult-wrapper {
    width: 265px;
  }
}

.cult-1 {
  top: -95px;
  left: 271px;
}
@media (max-width: 1600px) {
  .cult-1 {
    top: -46px;
    left: 193px;
  }
}
.cult-1 h4 {
  text-align: left;
}
.cult-1 .cult-image img {
  width: 132px;
  top: 0;
  left: 0;
  right: 0;
}
.cult-1 .cult-content {
  bottom: -175px !important;
}

.cult-4 {
  bottom: -95px;
  left: 271px;
}
@media (max-width: 1600px) {
  .cult-4 {
    bottom: -54px;
    left: 193px;
  }
}
.cult-4 h4 {
  text-align: left;
}
.cult-4 .cult-image img {
  width: 240px;
  top: 0;
  left: 0;
  right: 0;
}
.cult-4 .cult-content {
  bottom: -175px !important;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .cult-4 .cult-content {
    bottom: -150px !important;
  }
}

.cult-2 {
  top: 112px;
  right: -212px;
}
@media (max-width: 1600px) {
  .cult-2 {
    top: 78px;
    right: -191px;
  }
}
.cult-2 h4 {
  text-align: left;
}
.cult-2 .cult-image img {
  width: 240px;
  top: 0;
  left: 0;
  right: 0;
}
.cult-2 .cult-content {
  bottom: -175px !important;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .cult-2 .cult-content {
    bottom: -150px !important;
  }
}

.cult-6 {
  top: 112px;
  left: -212px;
}
@media (max-width: 1600px) {
  .cult-6 {
    top: 84px;
    left: -210px;
  }
}
.cult-6 h4 {
  text-align: right;
  padding-left: 0;
  padding-right: 20px;
  width: 180px;
}
.cult-6 .cult-wrapper {
  flex-direction: row-reverse;
}
.cult-6 .cult-content {
  left: -154px;
}
@media (max-width: 1600px) {
  .cult-6 .cult-content {
    /*left: -50px;*/
    left: -78px;
  }
}
.cult-6 .cult-content::after {
  /* left: 80%;*/
  left: 89%;
}
.cult-6 .cult-image img {
  top: 0;
  left: 0;
  right: 0;
}

.cult-3 {
  bottom: 112px;
  right: -212px;
}
@media (max-width: 1600px) {
  .cult-3 {
    bottom: 97px;
    right: -212px;
  }
}
.cult-3 h4 {
  text-align: left;
}
.cult-3 .cult-wrapper {
  align-items: center;
}
.cult-3 .cult-image img {
  width: 240px;
  top: 0;
  left: 0;
  right: 0;
}

.cult-5 {
  bottom: 112px;
  left: -212px;
}
@media (max-width: 1600px) {
  .cult-5 {
    bottom: 67px;
    left: -199px;
  }
}
.cult-5 h4 {
  text-align: right;
  padding-left: 0;
  padding-right: 20px;
}
.cult-5 .cult-wrapper {
  flex-direction: row-reverse;
}
.cult-5 .cult-content {
  left: -145px;
  bottom: -175px !important;
}
@media (max-width: 1600px) {
  .cult-5 .cult-content {
    /* left:-50px;*/
    left: -78px;
  }
}
.cult-5 .cult-content::after {
  /*left: 80%;*/
  left: 89%;
}
.cult-5 .cult-image img {
  width: 240px;
  top: 0;
  left: 0;
  right: 0;
}

.cult-wrapper:hover .cult-content {
  opacity: 1;
  bottom: -210px;
  transition: 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 1600px) {
  .cult-wrapper:hover .cult-content {
    bottom: -200px;
  }
}

.the-root {
  padding-top: 200px;
}
@media (max-width: 1600px) {
  .the-root {
    padding-top: 160px;
  }
}
@media (max-width: 991.98px) {
  .the-root {
    padding-top: 70px;
  }
}
.the-root h2 {
  font-family: "Tenor Sans";
  font-size: 78px;
  line-height: 104px;
  color: #1E1E20;
  font-weight: 400;
}
@media (max-width: 1600px) {
  .the-root h2 {
    font-size: 58px;
    line-height: 75px;
  }
}
@media (max-width: 1100px) {
  .the-root h2 {
    font-size: 41px;
    line-height: 48px;
  }
}
@media (max-width: 767.98px) {
  .the-root h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
.the-root p {
  margin-top: 40px;
}
@media (max-width: 991.98px) {
  .the-root p {
    font-size: 16px;
  }
}

.culture-banner h1 {
  font-family: "Kiona";
  text-transform: uppercase;
  text-align: center;
  font-size: 130px;
  font-weight: 400;
  color: #FFF;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  line-height: 115px;
}
@media (max-width: 1600px) {
  .culture-banner h1 {
    font-size: 90px;
  }
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .culture-banner h1 {
    top: 25%;
  }
}
@media (max-width: 991.98px) {
  .culture-banner h1 {
    font-size: 40px;
    top: 30%;
  }
}

.cultures-for h4.commit {
  font-family: "Tenor Sans";
  font-size: 78px;
  line-height: 104px;
  color: #B79662;
  font-weight: 400;
}
@media (max-width: 1600px) {
  .cultures-for h4.commit {
    font-size: 58px;
    line-height: 60px;
  }
}
@media (max-width: 991.98px) {
  .cultures-for h4.commit {
    font-size: 35px;
    line-height: 50px;
    margin-top: 15px;
    margin-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .cultures-for h4.commit {
    font-size: 32px;
    line-height: 37px;
  }
}
.cultures-for h4.commit span {
  color: #fff;
}

.cultures-for p {
  opacity: 0.9 !important;
}
.cultures-for .accordion-button {
  color: #B79662;
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .cultures-for .accordion-button {
    font-size: 18px;
    line-height: 25px;
  }
}
@media (max-width: 991.98px) {
  .cultures-for .accordion-item {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}

.cultures-for .accordion-golden .accordion-button:not(.collapsed)::after {
  background-image: url(../images/down-arrow.svg);
  background-size: 18px;
  background-position: right;
}
.cultures-for .accordion-golden .accordion-button::after {
  background-image: url(../images/down-arrow.svg);
  background-size: 18px;
  background-position: left;
}

@media (max-width: 1600px) {
  .block-three-book.roots-of-text {
    padding-bottom: 80px;
  }
}
@media (max-width: 991.98px) {
  .block-three-book.roots-of-text {
    padding-bottom: 20px;
  }
}

@media (max-width: 1600px) {
  .commit-shoot .top-line {
    top: -240px;
  }
}
@media (max-width: 1025px) {
  .commit-shoot .top-line {
    top: -90px;
  }
}
@media (max-width: 991.98px) {
  .commit-shoot .top-line {
    top: -150px;
  }
}

.goldent-parag {
  color: #1F1F22;
  margin-top: 10px;
}
@media (max-width: 991.98px) {
  .goldent-parag {
    margin-top: 0;
  }
}

@media (max-width: 1600px) {
  .new-white-acc .accordion-item p {
    font-size: 14px;
  }
}
@media (max-width: 991.98px) {
  .new-white-acc .accordion-item p {
    color: #19191A;
    font-size: 14px !important;
  }
}

.roots-of-text .the-root p {
  color: #1E1E20;
}

.accordion-item {
  border-top: none;
  border-left: none;
  border-right: none;
}
.accordion-item .accordion-button {
  border-bottom: none;
}

@media (min-width: 1100px) and (max-width: 1250px) {
  .chairman-message p {
    font-size: 15px;
  }
}
@media (min-width: 360px) and (max-width: 991px) {
  .commitemnts-to .accordion-body p {
    font-size: 14px;
  }
}
.regulatory-banner h1 {
  font-family: 'Trakya-Sans-300';
  text-transform: capitalize;
  font-size: 88px;
  font-weight: 400;
  line-height: 80px;
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 57px;
}
@media (max-width: 1600px) {
  .regulatory-banner h1 {
    font-size: 60px;
  }
}
@media (max-width: 1025px) {
  .regulatory-banner h1 {
    font-size: 50px;
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .regulatory-banner h1 {
    font-size: 40px;
    line-height: 46px;
  }
}

.regulatory-blocks {
  background: url(../images/regulatory-bg.png) no-repeat;
  padding-top: 270px;
  background-size: 113%;
  background-position: -108px -605px;
  padding-bottom: 140px;
}
@media (max-width: 1600px) {
  .regulatory-blocks {
    padding-top: 180px;
    background-size: 131%;
    background-position: -268px -605px;
  }
}
@media (max-width: 1025px) {
  .regulatory-blocks {
    padding-top: 180px;
    background-size: 161%;
    background-position: -168px -450px;
  }
}
@media (max-width: 991.98px) {
  .regulatory-blocks {
    padding-top: 125px;
  }
}
@media (max-width: 767.98px) {
  .regulatory-blocks {
    padding-top: 100px;
    padding-bottom: 50px;
    background-position: -109px -317px;
  }
}
@media (max-width: 575.98px) {
  .regulatory-blocks {
    background-position: -12px -166px;
  }
}
.regulatory-blocks h3, .regulatory-blocks h2 {
  font-family: "Tenor Sans";
  font-weight: 400;
  font-size: 52px;
  line-height: 70px;
  color: #1E1E20;
  text-align: center;
  max-width: 1370px;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .regulatory-blocks h3, .regulatory-blocks h2 {
    font-size: 38px;
    line-height: 60px;
    max-width: 1000px;
    margin: 0 auto;
  }
}
@media (max-width: 1280.98px) {
  .regulatory-blocks h3, .regulatory-blocks h2 {
    font-size: 35px;
    line-height: 50px;
  }
}
@media (max-width: 991.98px) {
  .regulatory-blocks h3, .regulatory-blocks h2 {
    font-size: 30px;
    line-height: 47px;
  }
}
@media (max-width: 767.98px) {
  .regulatory-blocks h3, .regulatory-blocks h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.regulatory-blocks h3 span, .regulatory-blocks h2 span {
  color: #B79662;
  display: block;
}

.postition-line {
  /* bottom: -134px;*/
  /*bottom: -45%;*/
  bottom: -20%;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .postition-line {
    bottom: -45%;
  }
}
@media (max-width: 1025px) {
  .postition-line {
    bottom: -50px;
  }
}
@media (max-width: 767.98px) {
  .postition-line {
    bottom: -107px;
  }
}

.regulatory-block ul {
  padding-top: 100px;
}
@media (max-width: 991.98px) {
  .regulatory-block ul {
    padding-top: 50px;
  }
}
.regulatory-block li {
  display: block;
  border: solid 1px #E1E1E1;
  border-radius: 15px;
  margin-bottom: 30px;
  transition: 0.3s ease-in-out;
}
.regulatory-block li a {
  padding: 30px;
  display: block;
  position: relative;
}
@media (max-width: 1600px) {
  .regulatory-block li a {
    padding: 22px 20px;
  }
}
@media (max-width: 767.98px) {
  .regulatory-block li a {
    padding: 20px;
  }
}
.regulatory-block li svg {
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .regulatory-block li svg {
    width: 15px;
  }
}
.regulatory-block li span {
  font-size: 24px;
  display: block;
  width: 60%;
  font-weight: 400;
  font-family: "Poppins";
  color: #1E1E20;
  line-height: 30px;
  margin-bottom: 5px;
}
@media (max-width: 1600px) {
  .regulatory-block li span {
    font-size: 20px;
    width: 70%;
    line-height: 26px;
  }
}
@media (max-width: 767.98px) {
  .regulatory-block li span {
    font-size: 18px;
    width: 86%;
    line-height: 22px;
  }
}
@media (max-width: 575.98px) {
  .regulatory-block li span {
    font-size: 16px;
  }
}
.regulatory-block li i {
  font-style: normal;
  font-weight: 500;
  font-family: "Poppins";
  color: #808080;
  font-size: 16px;
}
@media (max-width: 1600px) {
  .regulatory-block li i {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .regulatory-block li i {
    font-size: 12px;
  }
}
.regulatory-block li:hover {
  border-color: #B79662;
  transition: 0.3s ease-in-out;
}
.regulatory-block li:hover span {
  color: #B79662;
}
.regulatory-block li:hover svg path {
  stroke: #B79662;
}

.regulatory .page-link {
  border: none;
  font-family: "Poppins";
  font-size: 22px;
  background-color: transparent !important;
  color: #C7C7C7;
}
@media (max-width: 1600px) {
  .regulatory .page-link {
    font-size: 18px;
  }
  .regulatory .page-link img {
    max-width: 30px;
  }
}
@media (max-width: 767.98px) {
  .regulatory .page-link {
    font-size: 16px;
  }
}
.regulatory .page-link:hover {
  color: #B79662 !important;
  background-color: transparent !important;
}
.regulatory .page-link:focus {
  box-shadow: none;
}
.regulatory .page-item.active .page-link {
  background-color: transparent !important;
  border-color: transparent !important;
  color: #B79662 !important;
  width: 80px;
  position: relative;
}
@media (max-width: 1600px) {
  .regulatory .page-item.active .page-link {
    width: 60px;
  }
}
.regulatory .page-item.active .page-link:after {
  content: "";
  display: block;
  clear: both;
  width: 25px;
  position: absolute;
  right: -4px;
  height: 1px;
  background: #B79662;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 1600px) {
  .regulatory .page-item.active .page-link:after {
    width: 20px;
  }
}
@media (max-width: 767.98px) {
  .regulatory .page-item.active .page-link:after {
    width: 20px;
  }
}

.counter-paragraph.shooting-line.postition-line.blog-line {
  bottom: -30%;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .counter-paragraph.shooting-line.postition-line.blog-line {
    bottom: -45%;
  }
}

.book-banner h1 {
  font-size: 130px;
  /*font-family: "Kiona";*/
  font-family: 'Trakya-Sans-300';
  text-transform: capitalize;
  font-weight: 400;
  line-height: 130px;
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 57px;
  flex-direction: column;
}
@media (max-width: 1600px) {
  .book-banner h1 {
    font-size: 90px;
    line-height: 90px;
  }
}
@media (max-width: 1280.98px) {
  .book-banner h1 {
    font-size: 75px;
    line-height: 80px;
  }
}
@media (max-width: 1025px) {
  .book-banner h1 {
    font-size: 40px;
    line-height: 52px;
  }
}
@media (max-width: 575.98px) {
  .book-banner h1 {
    font-size: 40px;
    line-height: 48px;
  }
}
.book-banner .shooting-line .top-line {
  top: 100px;
  position: relative;
}

.bottom-commit-book {
  bottom: 0;
}

.commmon-text-book {
  position: relative;
  z-index: 1;
}
.commmon-text-book span.d-block {
  font-family: "Poppins";
  line-height: 139px;
  font-size: 128px;
  font-weight: 400;
  color: #E6E6E6;
  opacity: 0.35;
}
@media (max-width: 1600px) {
  .commmon-text-book span.d-block {
    line-height: 129px;
    font-size: 90px;
  }
}
@media (max-width: 991.98px) {
  .commmon-text-book span.d-block {
    line-height: 70px;
    font-size: 60px;
  }
}
@media (max-width: 575.98px) {
  .commmon-text-book span.d-block {
    line-height: 60px;
    font-size: 45px;
  }
}
.commmon-text-book h3, .commmon-text-book h2 {
  font-family: "Tenor Sans";
  font-size: 76px;
  line-height: 73px;
  font-weight: 400;
  margin-bottom: 35px;
}
@media (max-width: 1600px) {
  .commmon-text-book h3, .commmon-text-book h2 {
    font-size: 56px;
    line-height: 57px;
    margin-bottom: 35px;
  }
}
@media (max-width: 991.98px) {
  .commmon-text-book h3, .commmon-text-book h2 {
    font-size: 35px;
    line-height: 41px;
    margin-bottom: 15px;
  }
}
@media (max-width: 575.98px) {
  .commmon-text-book h3, .commmon-text-book h2 {
    font-size: 31px;
    line-height: 37px;
  }
}
.commmon-text-book p {
  font-family: "Poppins";
  font-weight: 400;
  line-height: 38px;
}
@media (max-width: 1600px) {
  .commmon-text-book p {
    line-height: 29px;
  }
}
@media (max-width: 991.98px) {
  .commmon-text-book p {
    line-height: 25px;
  }
}

.book-block-one {
  padding-top: 180px;
  padding-bottom: 180px;
}
@media (max-width: 1600px) {
  .book-block-one {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.book-block-one p {
  padding-right: 20px;
}
@media (max-width: 991.98px) {
  .book-block-one p {
    padding-right: 0;
  }
}
@media (max-width: 991.98px) {
  .book-block-one {
    padding-top: 80px;
    padding-bottom: 0;
  }
}

@media (max-width: 991.98px) {
  .bottom-commit-book {
    position: static !important;
  }
}

.color-gray h3, .color-gray h2 {
  color: #1E1E20;
}
.color-gray p {
  color: #1E1E20;
  opacity: 0.9;
}

.color-black h3 {
  color: #1E1E20;
}
.color-black p {
  color: #000;
  opacity: 0.9;
  padding-right: 0 !important;
  margin-bottom: 25px;
}

.golden-bg-book {
  background: #B79662;
}
@media (max-width: 991.98px) {
  .golden-bg-book {
    padding-bottom: 30px;
  }
}
.golden-bg-book .color-white p {
  color: #fff;
  opacity: 0.9;
}
@media (max-width: 991.98px) {
  .golden-bg-book .color-white p {
    margin-bottom: 50px;
  }
}
.golden-bg-book .color-white h3, .golden-bg-book .color-white h2 {
  color: #fff;
}
.golden-bg-book .color-white span {
  color: #fff;
}

.hover-pack {
  transition: 0.3s ease-in-out;
}
@media (max-width: 767.98px) {
  .hover-pack {
    margin-bottom: 20px;
  }
}
.hover-pack:hover {
  background-color: #C5A36E !important;
  box-shadow: 0px 3px 20px #A2814D;
  border-radius: 20px;
  transition: 0.3s ease-in-out;
  background: url(../images/bok-overlay.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}

.inside-hover {
  padding: 10px;
}

.block-two-sig {
  height: 70px;
  display: flex;
  align-items: end;
  margin-bottom: 10px;
}
@media (max-width: 575.98px) {
  .block-two-sig {
    height: 60px;
  }
}
.block-two-sig img {
  max-width: 55px;
  max-height: 55px;
  margin-bottom: 15px;
}
@media (max-width: 575.98px) {
  .block-two-sig img {
    max-width: 40px;
    max-height: 40px;
  }
}

.block-two-content span {
  font-family: "Poppins";
  line-height: 38px;
  font-size: 22px;
  font-weight: 400;
}
@media (max-width: 1600px) {
  .block-two-content span {
    line-height: 28px;
    font-size: 18px;
  }
}
@media (max-width: 991.98px) {
  .block-two-content span {
    line-height: 23px;
    font-size: 16px;
  }
}

.block-three-book {
  background: url(../images/second-fold-bg.png) no-repeat #fff top right;
  padding-bottom: 250px;
}
@media (max-width: 1600px) {
  .block-three-book {
    padding-bottom: 150px;
  }
}
@media (max-width: 1025px) {
  .block-three-book {
    padding-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .block-three-book {
    padding-bottom: 20px;
  }
}

.color-golden-content ul {
  /*column-count: 3;*/
  -moz-column-count: inherit;
       column-count: inherit;
}
@media (max-width: 575.98px) {
  .color-golden-content ul {
    /*column-count: 2;*/
    -moz-column-count: inherit;
         column-count: inherit;
  }
}
.color-golden-content ul li {
  width: 100%;
  display: inline-block;
}
.color-golden-content ul li .what-block {
  margin-bottom: 55px;
  margin-left: auto;
  margin-right: auto;
  width: 230px;
  height: 230px;
  border: solid 2px #B79662;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1600px) {
  .color-golden-content ul li .what-block {
    width: 160px;
    height: 160px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1280.98px) {
  .color-golden-content ul li .what-block {
    width: 150px;
    height: 150px;
  }
}
.color-golden-content ul li .what-block .what-do {
  height: 80px;
  align-items: end;
  display: flex;
  margin-bottom: 10px;
}
@media (max-width: 1600px) {
  .color-golden-content ul li .what-block .what-do {
    height: 70px;
  }
}
.color-golden-content ul li .what-block .what-do img {
  max-width: 60px;
}
@media (max-width: 1600px) {
  .color-golden-content ul li .what-block .what-do img {
    max-width: 40px;
  }
}
.color-golden-content ul li .what-block .what-text {
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: center;
  color: #B79662;
}
@media (max-width: 1600px) {
  .color-golden-content ul li .what-block .what-text {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 1025px) {
  .color-golden-content ul li .what-block .what-text {
    font-size: 14px;
  }
}
.color-golden-content ul li:nth-child(3), .color-golden-content ul li:nth-child(4) {
  position: relative;
  top: -112px;
}
@media (max-width: 575.98px) {
  .color-golden-content ul li:nth-child(3), .color-golden-content ul li:nth-child(4) {
    position: static;
  }
}
.color-golden-content ul li:nth-child(5), .color-golden-content ul li:nth-child(6) {
  position: relative;
  top: -25px;
}
@media (max-width: 575.98px) {
  .color-golden-content ul li:nth-child(5), .color-golden-content ul li:nth-child(6) {
    position: static;
  }
}

.color-golden-content {
  margin-top: 270px;
}
@media (max-width: 1600px) {
  .color-golden-content {
    margin-top: 230px;
  }
}
@media (max-width: 991.98px) {
  .color-golden-content {
    margin-top: 100px;
  }
}
@media (max-width: 575.98px) {
  .color-golden-content {
    margin-top: 10px;
  }
}

.max-block-book {
  max-width: 970px;
  margin-left: auto;
}
@media (max-width: 1600px) {
  .max-block-book {
    max-width: 780px;
  }
}
@media (max-width: 1025px) {
  .max-block-book {
    max-width: 710px;
  }
}

.last-book-block {
  padding-right: 85px;
}
@media (max-width: 1600px) {
  .last-book-block {
    padding-right: 20px;
  }
  .last-book-block p {
    font-size: 18px;
  }
}
@media (max-width: 991.98px) {
  .last-book-block p {
    font-size: 16px;
  }
}

.second-book-block {
  padding-right: 85px;
}
@media (max-width: 1600px) {
  .second-book-block {
    padding-right: 20px;
  }
  .second-book-block p {
    font-size: 18px;
  }
}
@media (max-width: 991.98px) {
  .second-book-block p {
    font-size: 16px;
  }
}

.first-book-block {
  padding-right: 176px;
}
.first-book-block p {
  padding-right: 227px;
}
@media (max-width: 1600px) {
  .first-book-block {
    padding-right: 20px;
  }
  .first-book-block p {
    padding-right: 150px;
    font-size: 18px;
  }
}
@media (max-width: 1280.98px) {
  .first-book-block p {
    padding-right: 150px;
    font-size: 17px;
  }
}
@media (max-width: 991.98px) {
  .first-book-block {
    padding-right: 0;
  }
  .first-book-block p {
    padding-right: 0;
    font-size: 16px;
  }
}

.color-golden-content ul .col-md-4:nth-child(2) {
  margin: -90px 0px 0px 0px;
}
@media (max-width: 767.98px) {
  .color-golden-content ul .col-md-4:nth-child(2) {
    margin: auto;
  }
}

.color-golden-content ul .col-md-4:nth-child(5) {
  margin: -90px 0px 0px 0px;
}
@media (max-width: 767.98px) {
  .color-golden-content ul .col-md-4:nth-child(5) {
    margin: auto;
  }
}

@media (max-width: 767.98px) {
  .color-golden-content ul .col-md-4 {
    width: 50%;
  }
}

.remove-contact-space {
  padding: 0;
  background-image: none;
  text-align: left;
  color: #fff;
}
@media (max-width: 991.98px) {
  .remove-contact-space {
    margin-top: 50px;
  }
}
.remove-contact-space label {
  color: #1F1F22;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  font-family: "Poppins";
}
@media (max-width: 1600px) {
  .remove-contact-space label {
    font-size: 14px;
  }
}

.more-questions {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.faq-questions {
  padding-bottom: 100px;
}
@media (max-width: 991.98px) {
  .faq-questions {
    padding-bottom: 25px;
  }
}
.faq-questions .accordion-body p {
  font-size: 22px;
}
@media (max-width: 1600px) {
  .faq-questions .accordion-body p {
    font-size: 18px;
    font-weight: 300;
  }
}
@media (max-width: 991.98px) {
  .faq-questions .accordion-body p {
    font-size: 16px;
    font-weight: 300;
  }
}
.faq-questions p {
  font-weight: 500;
  font-size: 22px;
  color: #fff;
  line-height: 38px;
  opacity: 1;
}
@media (max-width: 1600px) {
  .faq-questions p {
    font-size: 18px;
    line-height: 28px;
  }
}
.faq-questions .accordion {
  position: relative;
  z-index: 11;
}
@media (max-width: 1600px) {
  .faq-questions .accordion {
    padding-top: 70px;
  }
}
.faq-questions .accordion-button:not(.collapsed)::after {
  background: url(../images/acc-minus-new.png);
  width: 41px;
  height: 113px;
  background-position: left;
}
@media (max-width: 1600px) {
  .faq-questions .accordion-button:not(.collapsed)::after {
    width: 33px;
    height: 80px;
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
  }
}
.faq-questions .accordion-button::after {
  background: url(../images/acc-plus-new.png);
  width: 50px;
  height: 45px;
  background-position: left;
}
@media (max-width: 1600px) {
  .faq-questions .accordion-button::after {
    width: 50px;
    height: 77px;
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
  }
}
.faq-questions .accordion-item {
  padding-left: 80px;
  border: none;
  border-bottom: solid 2px #3E3E3F;
}
@media (max-width: 991.98px) {
  .faq-questions .accordion-item {
    padding-left: 45px;
  }
}
.faq-questions .accordion-item:last-child {
  border-bottom: none;
}
.faq-questions .accordion-button {
  font-family: "Poppins";
  font-size: 32px;
  font-weight: 500;
  line-height: 54px;
  color: #B79662 !important;
  padding-right: 100px;
}
@media (max-width: 1600px) {
  .faq-questions .accordion-button {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 991.98px) {
  .faq-questions .accordion-button {
    font-size: 20px;
    line-height: 28px;
    padding-right: 0;
  }
}
@media (max-width: 767.98px) {
  .faq-questions .accordion-button {
    font-size: 18px;
    line-height: 25px;
  }
}
.faq-questions .accordion-button::after {
  position: absolute;
  left: -85px;
}
@media (max-width: 991.98px) {
  .faq-questions .accordion-button::after {
    left: -50px;
  }
}
.faq-questions .accordion-body {
  padding: 25px 0;
}

.remove-contact-space .general-form .web-button.new-web {
  background: url(../images/button-bg.svg) no-repeat 0px 0px;
}

.contact-wraper .general-form .web-button.new-web:hover {
  background: url(../images/button-bg-hover.svg) no-repeat 0px 0px;
}

.got-questions {
  position: relative;
  z-index: 99;
  margin-top: -200px;
}
@media (max-width: 1600px) {
  .got-questions {
    margin-top: -200px;
  }
}
@media (max-width: 1100px) {
  .got-questions {
    margin-top: -100px;
  }
}
@media (max-width: 991.98px) {
  .got-questions {
    margin-top: 0;
  }
}
.got-questions h3 {
  font-family: "Tenor Sans";
  font-size: 52px;
  line-height: 70px;
  color: #B79662;
  margin-bottom: 120px;
  font-weight: 400;
}
@media (max-width: 1600px) {
  .got-questions h3 {
    font-size: 38px;
    line-height: 45px;
    margin-bottom: 20px;
  }
}
@media (max-width: 991.98px) {
  .got-questions h3 {
    font-size: 30px;
  }
}
.got-questions h3 span {
  color: #fff;
}

.overlay-grad.faq-questions::after {
  left: 0;
  top: -988px !important;
}
@media (min-width: 1100px) and (max-width: 1600px) {
  .overlay-grad.faq-questions::after {
    /*top:-660px !important;
    background-size: 100%;*/
    top: -900px !important;
    background-size: 90%;
  }
}
@media (max-width: 991.98px) {
  .overlay-grad.faq-questions::after {
    left: 130px;
    top: -212px !important;
  }
}
@media (max-width: 767.98px) {
  .overlay-grad.faq-questions::after {
    left: -188px;
    top: -253px !important;
  }
}

.faq-banner h1 {
  font-family: "Kiona";
  text-transform: uppercase;
  text-align: center;
  font-size: 90px;
  font-weight: 400;
  color: #FFF;
  position: absolute;
  left: 0;
  right: 0;
  top: 30%;
  line-height: 115px;
}
@media (max-width: 1600px) {
  .faq-banner h1 {
    font-size: 90px;
    margin-top: 0 !important;
  }
}
@media (max-width: 767.98px) {
  .faq-banner h1 {
    font-size: 50px;
    top: 30%;
  }
}/*# sourceMappingURL=style.css.map */


/* style added by joe */

.wpcf7-not-valid-tip {
  margin-top: 7px;
}

/* end */

/* new style added */
.managed-in-one-location {
  color: #fff;
  margin:
  0 0 10px 13px;
}

img.slider-img.stick {
  z-index: 9;
}

